LeetCode 45. Jump Game II
Question
Given an array of non-negative integers nums
, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Your goal is to reach the last index in the minimum number of jumps.
You can assume that you can always reach the last index.
Example 1:
1 | Input: nums = [2,3,1,1,4] |
Example 2:
1 | Input: nums = [2,3,0,1,4] |
Constraints:
1 <= nums.length <= 104
0 <= nums[i] <= 1000
Source: https://leetcode.com/problems/jump-game-ii/
Solution
1D DP. dp[i]
is the min number of jumps from i to the end.
1 | // DP, Time Complexity O(n^2) |
LeetCode 45. Jump Game II