Jump Game II--LeetCode

题目:

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


这道题是Jump Game的扩展,区别是这道题不仅要看能不能到达终点,而且要求到达终点的最少步数。其实思路和Jump Game还是类似的,只是原来的全局最优现在要分成step步最优和step-1步最优(假设当前步数是step)。当走到超过step-1步最远的位置时,说明step-1不能到达当前一步,我们就可以更新步数,将step+1。时间复杂度仍然是O(n),空间复杂度也是O(1)。代码如下:

    public int jump(int[] A) {  
        if(A==null || A.length==0)  
            return 0;  
        int lastReach = 0;  
        int reach = 0;  
        int step = 0;  
        for(int i=0;i<=reach&&ilastReach)  
            {  
                step++;  
                lastReach = reach;  
            }  
            reach = Math.max(reach,A[i]+i);  
        }  
        if(reach

比如Jump GameMaximum Subarray等都是经典的DP问题,都是使用了全局最优和局部最优的方法

ps:其实这个问题仍然可以延续使用上面那个问题的解决方案,使用一个数组记录到到当前位置所使用的最小步数,遍历数组,更新标志位中的步数即可

你可能感兴趣的:(LeetCode)