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:
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]).
Example 2:
Input: envelopes = [[1,1],[1,1],[1,1]]
Output: 1
Constraints:
1 <= envelopes.length <= 105
envelopes[i].length == 2
1 <= wi, hi <= 105
Solutions
Solution 1
Thinking
An envelope nests only if both width and height increase; we want the longest chain. A 2D \(O(n^2)\) LIS fails for \(n\le 10^5\). After sorting by width, LIS on height is the answer; equal widths must not nest.
Sort by width ascending and height descending, then greedy LIS on heights: append if larger than the tail, else binary-replace. Descending heights keep at most one envelope per width.