-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path778.swim-in-rising-water.py
48 lines (40 loc) · 1.53 KB
/
778.swim-in-rising-water.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# @lc app=leetcode id=778 lang=python3
#
# [778] Swim in Rising Water
#
# @lc code=start
# TAGS: Binary Search, Heap, DFS, Union Find
class Solution:
# 9116 ms, 1%. Time: O(R*C*R*C). Space: O(R*C). DP with memoization
def swimInWater(self, grid: List[List[int]]) -> int:
R, C = len(grid), len(grid[0])
visited = set()
@cache
def dfs(r=0, c=0, max_sofar=0):
if r == R - 1 and c == C - 1:
return max_sofar
rv = float("inf")
for x, y in (r - 1, c), (r + 1, c), (r, c + 1), (r, c - 1):
if 0 <= x < R and 0 <= y < C and (x, y) not in visited:
visited.add((x, y))
rv = min(rv, dfs(x, y, max(max_sofar, grid[x][y])))
visited.discard((x, y))
return rv
return dfs(max_sofar=grid[0][0])
# 96 ms, 88.49%. Time: O(R*C*logN). Space: O(R*C) From lee215 discussion. Heap
def swimInWater(self, grid: List[List[int]]) -> int:
R, C = len(grid), len(grid[0])
visited = set()
heap = [[grid[0][0], 0, 0]]
result = 0
while True:
val, r, c = heapq.heappop(heap)
result = max(result, val)
if r == R - 1 and c == C - 1:
return result
for x, y in (r - 1, c), (r + 1, c), (r, c + 1), (r, c - 1):
if 0 <= x < R and 0 <= y < C and (x, y) not in visited:
visited.add((x, y))
heapq.heappush(heap, (grid[x][y], x, y))
# @lc code=end