Please read the new rule regarding the restriction on the use of AI tools. ×

Russian doll envelopes ,but order is to be maintained

Revision en1, by roni123rohann, 2023-06-17 11:55:13

Given N dolls of dimensions (wi,hi), i.e w corresponds to width of ith doll and hi corresponds to height of ith doll. Now we can stuff a doll with dimensions (wx,hx) inside another (wy,hy) if wx<wy and hx<hy. Also you cannot change the order i.e x<y. Now if we can stuff a doll A under doll B, then B is said to be increasing with respect to A. Find the largest increasing subsequence.

1<=N<=100000 1<= wi,hi<= 1e9

Note:This is similar to the problem "Russian doll Envelopes" from leetcode ,but with added constraints(order is forced).

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English roni123rohann 2023-06-17 11:55:13 615 Initial revision (published)