Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.24 KB

0354. Russian Doll Envelopes.md

File metadata and controls

41 lines (34 loc) · 1.24 KB

问题描述

You are given a 2D array of integers envelopes where envelopes[i] = [wi, hi] represents the width and the height of an envelope.

One envelope can fit into another if and only if both the width and height of one envelope is greater than the width and height of the other envelope.

Return the maximum number of envelopes can you Russian doll (i.e., put one inside the other).

Note: You cannot rotate an envelope.

Example:

Input: envelopes = [[5,4],[6,4],[6,7],[2,3]]
Output: 3
Explanation: The maximum number of envelopes you can Russian doll is 3 ([2,3] => [5,4] => [6,7]).
Input: envelopes = [[1,1],[1,1],[1,1]]
Output: 1

思路

代码

class Solution:
    def maxEnvelopes(self, envelopes: List[List[int]]) -> int:
        if not envelopes:return 0
        envelopes.sort(key=lambda x:(x[0],-x[1]))
        n=len(envelopes)
        stack=[]
        for i in range(n):
            h=envelopes[i][1]
            if not stack or stack[-1]<h:
                stack.append(h)
            else:
                index=bisect.bisect_left(stack,h)
                stack[index]=h
        return len(stack)