Jump Game

时间:2014-05-02 05:10:22   收藏:0   阅读:181

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.

1. 题目给定输入都是非负整数
2. 用cpos表示当前可以到达的最后一个位置,然后开始以cpos为结尾开始遍历数组,并同时更新cpos(如果i + A[i]大于当前cpos)
3. 如果在推出循环前在某个位置有cval >= n - 1,说明可以到达最后一个元素,所以之际返回true; 否则在循环结束后返回false。


class Solution {
public:
    bool canJump(int A[], int n) {
        if (n < 2) return true;
        int cpos = A[0];
        for (int i = 0; i <= cpos; ++i) {
            int cval = i + A[i];
            if (cval >= n - 1) return true;
            if (cval > cpos) cpos = cval;
        }
        
        return false;
    }
};


Jump Game,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!