0045. Jump Game II
https://leetcode.com/problems/jump-game-ii
Description
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:
Example 2:
Constraints:
1 <= nums.length <= 104
0 <= nums[i] <= 1000
ac
This is an implicit bfs solution. i == curEnd means you visited all the items on the current level. Incrementing jumps++ is like incrementing the level you are on. And curEnd = curFarthest is like getting the queue size (level size) for the next level you are traversing.
Last updated