-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path45.py
33 lines (31 loc) · 953 Bytes
/
45.py
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
# https://neetcode.io/problems/jump-game-ii
# https://leetcode.com/problems/jump-game-ii/
from typing import List
class Solution: # DP, top-down
def jump(self, nums: List[int]) -> int:
memo = {}
def dfs(i):
if i >= len(nums) - 1:
return 0
if i in memo:
return memo[i]
target = i + nums[i]
minJump = float('inf')
while i < target:
minJump = min(minJump, dfs(target))
target -= 1
memo[i] = minJump + 1
return memo[i]
return dfs(0)
class Solution: # Greedy
def jump(self, nums: List[int]) -> int:
jumps = 0
l = r = 0
while r < len(nums) - 1:
jumps += 1
maxJump = 0
for i in range(l, r + 1):
maxJump = max(maxJump, i + nums[i])
l = r + 1
r = maxJump
return jumps