-
Notifications
You must be signed in to change notification settings - Fork 9
/
01_matrix.py
60 lines (43 loc) · 1.21 KB
/
01_matrix.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
49
50
51
52
53
54
55
56
57
58
59
60
"""
https://leetcode.com/problems/01-matrix/submissions/
Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell.
The distance between two adjacent cells is 1.
Example 1:
Input:
[[0,0,0],
[0,1,0],
[0,0,0]]
Output:
[[0,0,0],
[0,1,0],
[0,0,0]]
Example 2:
Input:
[[0,0,0],
[0,1,0],
[1,1,1]]
Output:
[[0,0,0],
[0,1,0],
[1,2,1]]
"""
class Solution:
def updateMatrix(self, matrix: List[List[int]]) -> List[List[int]]:
import sys
res = [[sys.maxsize]*len(matrix[0]) for i in range(len(matrix))]
q = []
for i in range(len(matrix)):
for j in range(len(matrix[0])):
if matrix[i][j] == 0:
res[i][j] = 0
q.append((i, j))
offset = [(0, 1), (0, -1), (1, 0), (-1, 0)]
while q:
n = q.pop(0)
for k in offset:
x = n[0] + k[0]
y = n[1] + k[1]
if (x >= 0 and x < len(matrix) and y >= 0 and y < len(matrix[0]) and res[n[0]][n[1]] + 1 < res[x][y]):
res[x][y] = res[n[0]][n[1]] + 1
q.append((x, y))
return res