[LeetCode] Jump Game II(贪婪算法)

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

用queue实现bfs的思想,Memory Limited Exceeded!

然后把queue改成vector实现同样的思想,Time Limited Exceeded!

class Solution {
public:
    int jump(int A[], int n) {
        if(n<2)
           return 0;
       pair<int,int> temp;//pair记录下标和到此下标的步数
       vector<pair<int,int> > v1;
       int minStep = n ;
       temp = make_pair(0,0);
       v1.push_back(temp);
       while(!v1.empty()){
           temp = v1.back();
           int Index = temp.first;
           int step  = temp.second;
           v1.pop_back();
           if(Index>=n-1){
               if(step == 2)
                   return 2;
               else if(step<minStep)
                   minStep = step;
               continue;
           }
           int newIndex = Index + A[Index];
           if(newIndex == Index)
               continue;
           temp = make_pair(newIndex,++step);
           v1.push_back(temp);
           for(int i = Index+1;i<newIndex;i++){
              if(i+A[i]<newIndex)
                  continue;
              else{
                temp = make_pair(i+A[i],step+1);
                v1.push_back(temp);
              }
           }
       }//end while
       return minStep;
    }//end func
};

克服浪费时间和浪费空间的问题,Here is a solution from other,怎么会如此简洁(贪婪算法):

/*
 * We use "last" to keep track of the maximum distance that has been reached
 * by using the minimum steps "ret", whereas "curr" is the maximum distance
 * that can be reached by using "ret+1" steps. Thus,
 * curr = max(i+A[i]) where 0 <= i <= last.
 */

class Solution {                      //last和curr都是下标
public:
    int jump(int A[], int n) {
        int ret = 0;
        int last = 0;
        int curr = 0;
        for (int i = 0; i < n; ++i) {
            if (i > last) {
                last = curr;
                ++ret;
            }
            curr = max(curr, i+A[i]);  //经过ret+1步跳到的下标curr位置
        }
        return ret;
    }
};

[LeetCode] Jump Game II(贪婪算法),布布扣,bubuko.com

时间: 2024-10-26 22:57:13

[LeetCode] Jump Game II(贪婪算法)的相关文章

LeetCode: Jump Game II [044]

Perface 如果让你实现这个页面和一些操作的,比如点击1.2.3等就在那个input text中显示,还有删除功能,拨打我们先不要管它,只是模拟而已.要是我刚开始做的话,我会这样做: 用css.HTML布局那个界面 用javascript的事件委托监听那个按钮的父节点的点击事件 但是如果我想用面向对象的思想做呢?我是用Ext做的,所以我想说的是它帮我封装了很多.可能一些没用过Ext的人不太了解我下面贴的代码,但是我会尽量解释清楚的! Description ContactTelPanel =

[leetcode]Jump Game II @ Python

原题地址:https://oj.leetcode.com/problems/jump-game-ii/ 题意: 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 i

LeetCode: Jump Game II 解题报告

Jump Game II 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 nu

[LeetCode] Jump Game II 贪心

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

leetcode - Jump Game II

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

[LeetCode] Jump Game II 跳跃游戏之二

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

[LeetCode]Jump Game II (贪心,维护当前最远能到达的位置和所需最少步数)

最少跳跃步数 第一想法是DP,复杂度O(n^2),但是对于大型数据会超时. Discuss中一种犀利的贪心方法,复杂度为O(n) class Solution { public: int jumpDP(int A[], int n) {//DP方法 int *dp=new int[n],j; memset(dp,127,sizeof(int)*n); dp[0]=0; int i=0; for(i=0;i<n-1;++i){ for(j=1;j<=A[i]&&i+j<n;

【To Read】LeetCode | Jump Game II(转载)

题目: 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 j

【贪婪算法、动态规划】Jump Game II

题目:leetcode Jump Game II 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 th