• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

[Swift]LeetCode354.俄罗斯套娃信封问题|RussianDollEnvelopes

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10276020.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

You have a number of envelopes with widths and heights given as a pair of integers (w, h). 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.

What is the maximum number of envelopes can you Russian doll? (put one inside other)

Note:
Rotation is not allowed.

Example:

Input: [[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]).

给定一些标记了宽度和高度的信封,宽度和高度以整数对形式 (w, h) 出现。当另一个信封的宽度和高度都比这个信封大的时候,这个信封就可以放进另一个信封里,如同俄罗斯套娃一样。

请计算最多能有多少个信封能组成一组“俄罗斯套娃”信封(即可以把一个信封放到另一个信封里面)。

说明:
不允许旋转信封。

示例:

输入: envelopes = [[5,4],[6,4],[6,7],[2,3]]
输出: 3 
解释: 最多信封的个数为 3, 组合为: [2,3] => [5,4] => [6,7]。

356ms
 1 class Solution {
 2     //二分法
 3     func maxEnvelopes(_ envelopes: [[Int]]) -> Int {
 4         var envelopes = envelopes
 5         var dp:[Int] = [Int]()
 6         envelopes.sort(by:sortArray)
 7         for i in 0..<envelopes.count
 8         {
 9             var left:Int = 0
10             var right:Int = dp.count
11             var t:Int = envelopes[i][1]
12             while(left < right)
13             {
14                 var mid:Int = left + (right - left) / 2
15                 if dp[mid] < t
16                 {
17                     left = mid + 1
18                 }
19                 else
20                 {
21                     right = mid
22                 }
23             }
24             if right >= dp.count
25             {
26                 dp.append(t)
27             }
28             else
29             {
30                 dp[right] = t
31             }            
32         }
33         return dp.count
34     }
35     
36     func sortArray(_ a:[Int],_ b:[Int]) -> Bool
37     {
38         if a[0] == b[0]
39         {
40             return a[1] > b[1]
41         }
42         return a[0] < b[0]
43     }
44 }

6948ms

 1 class Solution {
 2     func maxEnvelopes(_ envelopes: [[Int]]) -> Int {
 3         if envelopes.count == 0 { return 0 }
 4         let sorted = envelopes.sorted {
 5             return $0[0] < $1[0]
 6         }
 7         
 8         var dp: [Int] = [Int](repeating: 0, count: envelopes.count)
 9         var res = 0
10         for i in 0..<sorted.count {
11             dp[i] = 1
12             for j in 0..<i {
13                 // if i is bigger than j
14                 if sorted[i][0] > sorted[j][0] && sorted[i][1] > sorted[j][1] {
15                     dp[i] = max(dp[i], dp[j] + 1)
16                 }
17             }
18             res = max(res, dp[i])
19         }
20         return res
21     }
22 }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Swift3.0之UITableViewCell系统样式发布时间:2022-07-13
下一篇:
iOS:学习笔记,用代码驱动自动布局实例(swift)发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap