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

    先想到了动态规划,不过可惜大数据没有过,是一个从25000到0的递减一的数组,想试试贪心。

    动态规划:

    class Solution {
    public:
        bool canJump(int A[], int n) {
            // Start typing your C/C++ solution below
            // DO NOT write int main() function
            bool B[n];
            B[n-1] = true;
            for(int i = n-2;i>=0;i--)
            {
                int x = A[i];
                B[i] = false;
                if(i+x>n-1)
                    B[i] = true;
                else
                while(x!=0&&!B[i])
                {
                    if(B[i+x]==true)
                    B[i]=true;
                    x--;
                }
            }
            return B[0];
        }
    };

    贪心:

    class Solution {
    private: map<int,bool> record;    
    public:
        bool canJump(int A[], int n) {
            // Start typing your C/C++ solution below
            // DO NOT write int main() function
            record.clear();
            for(int i = 0;i<n;i++)
            {
                if(Jump(A,n,i))
                return true;
                if(A[i]==0)
                return false;
            }
            return false;
        }
        bool Jump(int A[],int n,int i)
        {
            if(A[i]+i>=n-1)
            {
                record[i] = true;
                return true;
            }
            else if(A[i]==0)
            {
                record[i] = false;
                return false;
            }
            else
            {
                map<int,bool>::iterator iter= record.find(i);
                if(iter!=record.end())
                return record[i];
                else
                {
                    return Jump(A,n,A[i]+i);
                }
            }
        }
    };
  • 相关阅读:
    css实现垂直居中
    js验证输入框
    textarea统计字数
    ajax提交form表单
    JS中的正则表达式
    《遮蔽层的隐藏块》
    2016各大互联网公司前端面试题汇总
    JQ 添加节点和插入节点的方法总结
    [原]CentOS7部署osm2pgsql
    [原]CentOS7部署PostGis
  • 原文地址:https://www.cnblogs.com/727713-chuan/p/3333009.html
Copyright © 2020-2023  润新知