-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path90.py
39 lines (34 loc) · 1.41 KB
/
90.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
class Solution:
def shortestPathBinaryMatrix(self, grid: List[List[int]]) -> int:
max_row = len(grid) - 1
max_col = len(grid[0]) - 1
directions = [
(-1, -1), (-1, 0), (-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)]
# Helper function to find the neighbors of a given cell.
def get_neighbours(row, col):
for row_difference, col_difference in directions:
new_row = row + row_difference
new_col = col + col_difference
if not (0 <= new_row <= max_row and 0 <= new_col <= max_col):
continue
if grid[new_row][new_col] != 0:
continue
yield (new_row, new_col)
# Check that the first and last cells are open.
if grid[0][0] != 0 or grid[max_row][max_col] != 0:
return -1
# Set up the BFS.
queue = deque()
queue.append((0, 0))
grid[0][0] = 1
# Carry out the BFS.
while queue:
row, col = queue.popleft()
distance = grid[row][col]
if (row, col) == (max_row, max_col):
return distance
for neighbour_row, neighbour_col in get_neighbours(row, col):
grid[neighbour_row][neighbour_col] = distance + 1
queue.append((neighbour_row, neighbour_col))
# There was no path.
return -1