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.

 1 public class Solution {
 2     public boolean canJump(int[] A) {
 3         int len = A.length;
 4         if(len<=0) return false;
 5         int cur =0;
 6         int next =0;
 7         for(int i=0;i<len;i++){
 8             if(i>cur){
 9                 cur = next;
10                 if(i>next) return false;
11             }
12             next = Math.max(next,i+A[i]);
13         }
14         return true;
15     }
16 }
View Code

 

posted @ 2014-02-13 04:51  krunning  阅读(122)  评论(0编辑  收藏  举报