[LeetCode] Jump Game

时间:2014-03-10 22:05:31   收藏:0   阅读:466

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.

Solution:

bubuko.com,布布扣
class Solution {
public:
    int *label;
    bool canJump(int A[], int n) {
        if(n == 0) return false;
        if(n == 1) return true;
        
        int curMax = A[0];
        for(int i = 0;i < n - 1;i++)
        {
            if(i > curMax) break;
            if(A[i] + i > curMax) curMax = A[i] + i;
            if(curMax >= n - 1) return true;
        }
        return false;
    }
};
bubuko.com,布布扣

[LeetCode] Jump Game,布布扣,bubuko.com

原文:http://www.cnblogs.com/changchengxiao/p/3592577.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!