-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0055. Jump Game
36 lines (35 loc) · 1000 Bytes
/
0055. Jump Game
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class Solution {
// public boolean canJump(int[] nums) {
// int n = nums.length;
// boolean[] dp = new boolean[n];
// Arrays.fill(dp, false);
// dp[0] = true;
// for (int i = 0; i < n; i++) {
// if (dp[i] == false) {
// continue;
// }
// int step = nums[i];
// for (int j = 0; i + j < n && j <= step; j++) {
// dp[i + j] = true;
// }
// }
// return dp[n - 1];
// }
public boolean canJump(int[] nums) {
int end = 0, max = 0, n = nums.length;
if (n == 1) {
return true;
}
for (int i = 0; i < n - 1; i++) {
if (i > max) {
return false;
}
end = i + nums[i];
max = Math.max(max, end);
if (max >= n - 1) {
return true;
}
}
return false;
}
}