Array Hopper I

  1. 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. 思路

  1. dp[i] state = maximum index can reach in array[0:i+1]

  2. transition function

    1. when dp[i-1] < i, can not reach index i, then dp[i] = dp[i-1]

    2. when dp[i-1] > i, can reach index i, then dp[i] = max(dp[i-1], max_i)

    3. max_i = maximum index can reach when starting from current index i

4. Coding

Last updated

Was this helpful?