forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJumpGame.java
37 lines (33 loc) · 1.19 KB
/
JumpGame.java
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
37
package medium;
public class JumpGame {
public static boolean canJump_greedy(int[] nums) {
int farthest = nums[0];
for(int i = 0; i < nums.length; i++){
if(i <= farthest && nums[i]+i > farthest) {
//i <= farthest is to make sure that this current i is within the current range
// nums[i]+i > farthest is to make sure that it's necessary to update farthest with current nums[i]+i
farthest = nums[i]+i;
}
}
return farthest >= nums.length-1;
}
//this normal dp ends in TLE for extreme test cases
public static boolean canJump_dp(int[] nums) {
boolean[] can = new boolean[nums.length];
can[0] = true;
for(int i = 0; i < nums.length; i++){
int reach = nums[i];
if(can[i]){
for(int j = i+1; j < nums.length && j <= i+reach; j++){
can[j] = true;
}
}
}
return can[nums.length-1];
}
public static void main(String...strings){
// int[] nums = new int[]{1,2};
int[] nums = new int[]{0,2,3};
System.out.println(canJump_greedy(nums));
}
}