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

[Swift]LeetCode45.跳跃游戏II|JumpGameII

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

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

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

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

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

Given an array of non-negative integers, you are initially positioned at the first index of the array.

Each element in the array represents your maximum jump length at that position.

Your goal is to reach the last index in the minimum number of jumps.

Example:

Input: [2,3,1,1,4]
Output: 2
Explanation: The minimum number of jumps to reach the last index is 2.
    Jump 1 step from index 0 to 1, then 3 steps to the last index.

Note:

You can assume that you can always reach the last index.


给定一个非负整数数组,你最初位于数组的第一个位置。

数组中的每个元素代表你在该位置可以跳跃的最大长度。

你的目标是使用最少的跳跃次数到达数组的最后一个位置。

示例:

输入: [2,3,1,1,4]
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。
     从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。

说明:

假设你总是可以到达数组的最后一个位置。


16ms

 1 class Solution {
 2     func jump(_ nums: [Int]) -> Int {
 3   if (nums.count == 0 || nums.count == 1) { return 0 }
 4   
 5   var res = 0
 6   var mi = 0
 7   for e in 0...nums.count-1 {
 8     if nums[e] == 0 {continue}
 9     var md = 0
10 
11     if e < mi {continue}
12     // print(e,mi)
13     for c in e+1...e + nums[e] {
14       if (c >= nums.count-1) { return res + 1}
15       if (c+nums[c] > md) {mi = c}
16       md = max(md,c+nums[c])
17       
18     }
19     res += 1
20   }
21   return res
22 }
23 }

80ms

 1 class Solution {
 2     func jump(_ nums: [Int]) -> Int {
 3 
 4         var startIndex = 0
 5         var endIndex = 0
 6         var jump = 0
 7         var mostFurther = 0
 8         for i in 0..<nums.count-1{
 9             mostFurther = max(mostFurther, i + nums[i])
10             
11             if i == endIndex{
12                 jump += 1
13                 endIndex = mostFurther
14             }
15             
16         }
17         return jump
18     }
19 }

96ms

 1 class Solution {
 2     func jump(_ nums: [Int]) -> Int {
 3         var cnt = 0, idx = 0
 4         var cur = 0, pre = 0
 5         while cur < nums.count - 1 {
 6             cnt += 1
 7             pre = cur
 8             while idx <= pre {
 9                 cur = max(cur, idx + nums[idx])
10                 idx += 1
11             }
12         }
13         return cnt
14     }
15 }

 


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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