Russian Doll Envelopes

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 are greater than the other envelope's width and height.

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

Note: You cannot rotate an envelope.

Example 1
Inputenvelopes = [[5,4],[6,4],[6,7],[2,3]]
Output3
The maximum number of envelopes you can Russian doll is 3: [2,3] => [5,4] => [6,7].
Example 2
Inputenvelopes = [[1,1],[1,1],[1,1]]
Output1
Since all envelopes have the same width and height, only one envelope can be used.

Constraints

  • 1 <= envelopes.length <= 10^5
  • envelopes[i].length == 2
  • 1 <= wi, hi <= 10^5

Asked at 11 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate