-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwalls_and_gates.py
60 lines (52 loc) · 1.82 KB
/
walls_and_gates.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
from collections import deque
from math import inf
from typing import List
# Amazon Problem Wall and Gates
def wallsAndGates(rooms: List[List[int]]) -> None:
ROWS, COLS = len(rooms), len(rooms[0])
q = deque()
for r in range(ROWS):
for c in range(COLS):
if rooms[r][c] == 0:
q.append([r, c])
directions = [[0, 1], [0, -1], [1, 0], [-1,0]]
time = 1
while q:
qlen = len(q)
for _ in range(qlen):
r, c = q.popleft()
for dr, dc in directions:
row, col = dr + r, dc + c
if(row in range(ROWS) and col in range(COLS) and rooms[row][col] == inf):
rooms[row][col] = time
q.append([row, col])
time+=1
"""
Algorithm - Breadth First Search
Time Complexity - O(n)
Space Complexity - O(n)
Explanation:
1. We first add all the gates to a queue.
2. We then iterate through the queue and check the adjacent cells for empty rooms.
3. If there are empty rooms, we add them to the queue and update the distance.
4. We repeat this process until the queue is empty.
Note: We can also use a visited array to keep track of visited cells.
"""
rooms = [[inf,-1,0,inf],[inf,inf,inf,-1],[inf,-1,inf,-1],[0,-1,inf,inf]]
wallsAndGates(rooms)
print(rooms)
assert rooms == [[3,-1,0,1],[2,2,1,-1],[1,-1,2,-1],[0,-1,3,4]]
rooms2 = [[inf,-1,0,inf],
[inf,inf,inf,-1],
[inf,-1,inf,-1],
[-1,-1,inf,inf]]
wallsAndGates(rooms2)
print(rooms2)
assert rooms2 == [[4, -1, 0, 1], [3, 2, 1, -1], [4, -1, 2, -1], [-1, -1, 3, 4]]
rooms3 = [[inf,-1,0,inf],
[-1,-1,inf,-1],
[inf,-1,inf,-1],
[-1,-1,inf,inf]]
wallsAndGates(rooms3)
print(rooms3)
assert rooms3 == [[inf, -1, 0, 1], [-1, -1, 1, -1], [inf, -1, 2, -1], [-1, -1, 3, 4]]