Array Hopper I
Last updated
Last updated
Link
2. 题目
Given an array A of non-negative integers, you are initially positioned at index 0 of the array. A[i] means the maximum jump distance from that position (you can only jump towards the end of the array). Determine if you are able to reach the last index.
Assumptions
The given array is not null and has length of at least 1.
Examples
{1, 3, 2, 0, 3}, we are able to reach the end of array(jump to index 1 then reach the end of the array)
{2, 1, 1, 0, 2}, we are not able to reach the end of array
3. 思路
dp[i] state = maximum index can reach in array[0:i+1]
transition function
when dp[i-1] < i, can not reach index i, then dp[i] = dp[i-1]
when dp[i-1] > i, can reach index i, then dp[i] = max(dp[i-1], max_i)
max_i = maximum index can reach when starting from current index i
4. Coding