zoukankan      html  css  js  c++  java
  • [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;
        }
    };
  • 相关阅读:
    php 表单的活用
    PHP 内存的分布问题
    php 半角与全角相关的正则
    解决 U盘安装Windows Server 2012 R2 报错 Windows 无法打开所需的文件 Sourcesinstall.wim
    VS2010或2012中,如何设置代码格式化?
    变色龙引导安装黑苹果 遇到的问题的解决办法
    Ozmosis实现BIOS直接启动Yosemite,基本完美
    MMTool制作Ozmosis引导BIOS完美引导OS X系统
    黑苹果安装步骤
    win8.1 usb3 速度慢的解决方法
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3908531.html
Copyright © 2011-2022 走看看