`
ouqi
  • 浏览: 42179 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

[leetcode] Jump Game

阅读更多

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.

Determine if you are able to reach the last index.

For example:
A = [2,3,1,1,4], return true.

A = [3,2,1,0,4], return false.

 

思路: 从下标i开始,能走到的最远下标为i+A[i],且i~i+A[i]范围内都是可以走到的。所以遍历A,不断更新能走到的最远下标即可。当最终max>=len-1,说明max以及max之前的路径都是可以走到的,即包含在这之内的len-1这一位是可以走到的。

 

 public boolean canJump(int[] A) {
        // Start typing your Java solution below
        // DO NOT write main() function
        int len = A.length;
        
        int max = 0;//能走到的最远下标
        for(int i = 0;i<=len-1;i++){
                if(i<=max&&i+A[i]>max) max = i+A[i];
        }
        return max>=len-1;
    }

 

 

 

Jump Game IIMar 17 '127347 / 20162

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.

For example:
Given array A = [2,3,1,1,4]

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.)

 

思路:单源最短路径,类似于BFS, d[i]表示走到下标i的最短路径。

 

 public int jump(int[] A) {
        // Start typing your Java solution below
        // DO NOT write main() function
       int len = A.length;
       int max = 0;
       int [] d = new int[len];
       d[0] = 0;
       
       for(int i = 0;i<len-1;i++){
           if(A[i]>0){
            if(A[i]+i>=len-1) return d[i]+1;
            if(i+A[i]>max){
               for(int j = max+1;j<=A[i]+i;j++)//直接从max+1开始更新即可。因为路径                                               //肯定是以下标递增的方式走的,和图                                                //不同(图没有这种特性)。
                    d[j] = d[i]+1;
               max = i+A[i];
               
            }
           }
       }
      return d[len-1];
        
    }

 

 

分享到:
评论

相关推荐

    java-leetcode题解之Jump Game.java

    java java_leetcode题解之Jump Game.java

    java-leetcode题解之Jump Game II.java

    java java_leetcode题解之Jump Game II.java

    fuxuemingzhu#Leetcode-Solution-All#55. Jump Game 跳跃游戏1

    1.贪心算法中,作出的每步贪心决策都无法改变,因为贪心策略是由上一步的最优解推导下一步的最优解,而上一步之前的最优解则不作保留 2.由(1)中的介绍,可以知道贪

    java-leetcode题解之055-Jump-Game

    java入门 java_leetcode题解之055_Jump_Game

    js-leetcode题解之55-jump-game.js

    js js_leetcode题解之55-jump-game.js

    C语言-leetcode题解之45-jump-game-ii.c

    c语言入门 C语言_leetcode题解之45-jump-game-ii.c

    js-leetcode题解之45-jump-game-ii.js

    js js_leetcode题解之45-jump-game-ii.js

    45jumpgame2.cpp

    leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题leetcode45题

    leetcode卡-Jump-Game-IV:跳跃游戏-IV

    在“Jump-Game-IV-main”文件中,可能包含了实现这个解决方案的源代码。通过分析和学习这段代码,我们可以更深入地理解上述概念,并了解如何在实际编程中应用这些算法。然而,为了适应大测试用例,可能需要进一步...

    leetcode71python-leetcode:leetcode

    leetcode 71 Python用 Python 编写 Leetcode (数据科学家的解决方案) - 易于理解的最佳解决方案,可以通过所有 Leetcode 测试用例,对于非 ...Game II (HARD) Leetcode 51. N-Queens (HARD) Leetcode 52. N-

    Leetcode题目+解析+思路+答案.pdf

    - **Jump Game**:跳跃游戏,判断是否能到达数组末尾。 - **Gas Station**:寻找最短的加油路线。 - **Candy**:分糖果,确保每个孩子至少得到一块糖,尽可能公平。 - **Word Break**:判断一个字符串是否可以...

    _leetcode-python.pdf

    - Jump Game / Jump Game II: 第一个问题要求判断是否能到达数组的最后一个位置,第二个问题要求求出最小跳跃次数到达最后一个位置。 - Permutations / Permutations II: 生成所有可能的排列组合,考虑重复元素的...

    LeetCode leetcode部分题解答代码实现

    * Jump Game:给定一个数组,判断是否可以跳跃到数组的末尾。这个题目需要使用贪心算法的思想,将数组分解成更小的子数组,并判断是否可以跳跃到末尾。 * Gas Station:给定一个数组,返回可以到达的加油站数量。这...

    leetcode-常见考题2.pdf

    - 在 JumpGame 和 MinimumPathSum 题目中,动态规划用于找出跳跃游戏或路径选择中达到最优解的策略。 4. **堆栈**: - 堆栈数据结构可以用于处理与括号匹配、表达式求值等相关的题目。 - 在 ...

    leetcode代码200题c++

    4. **Jump Game II**:此问题涉及到广度优先搜索(BFS)或深度优先搜索(DFS)策略,以找出在给定限制下到达最远位置的跳跃次数。它考察了图遍历和优化算法性能的能力。 5. **Sliding Window Maximum**:这是一个...

    javalruleetcode-LeetCode::lollipop:个人LeetCode习题解答仓库-多语言

    java lru leetcode :ice_cream: LeetCode Kindem 的个人 LeetCode 题解仓库,欢迎交流学习。 下面的目录中 $number 题号代表经典 LeetCode ...LeetCode ...Jump Game 56 Merge Intervals 64 Minimum Path Sum 73

    gasstationleetcode-LeetCode_Practice:我的LeetCode练习从2020年开始

    加油站 leetcode 力扣_实践 标签: leetcode 我的 LeetCode 练习从 2020 年开始 ...Leetcode ...55_Jump_Game 45_Jump_Game_II 121_Best_Time_to_Buy_and_Sell_Stock 122_Best_Time_to_Buy_and_Sell_Stock_

    leetcode1-300.docx

    这个内容讲解了贪心算法在 Jump Game 问题中的应用,特别是理解 nums[i] + i 的值在决定是否能跳到下一个位置中的关键作用。 10. 动态规划的题目分为两大类,一种是求最优解类,典型问题是背包问题,另一种就是计数...

Global site tag (gtag.js) - Google Analytics