Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Russian doll envelope by leetcode

2025-04-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to realize the Russian doll envelope by leetcode". In the operation of the actual case, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Given some envelopes marked with width and height, width and height appear in integer pairs (w, h). When the width and height of another envelope are larger than this envelope, this envelope can be put into another envelope, just like the Russian doll.

Please calculate the maximum number of envelopes that can form a group of "Russian doll" envelopes (that is, you can put one envelope into another).

Description:

Rotating envelopes is not allowed.

Example:

Input: envelopes = [[5jue 4], [6je 4], [6pr 7], [2pr 3]]

Output: 3

Explanation: the maximum number of envelopes is 3, and the combination is: [2jue 3] = > [5je 4] = > [6je 7].

Ideas for solving the problem:

1, this is a two-dimensional sorting + lis compound problem

2, first do the two-dimensional sorting, install the first dimensional ascending order, and the second dimension describe the arrangement

3, do lis for the second dimension

A, denote the longest increasing subsequence at the end of I by dp [I]

B, then if a [I] > a [j], dp [I] = a [j] + 1

C, for j from 0 to I, take the maximum value

4. Note that the maximum value needs to traverse the dp

Code implementation

Func maxEnvelopes (envelopes [] int) int {if len (envelopes)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report