-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrotting _oranges.py
36 lines (30 loc) · 1.1 KB
/
rotting _oranges.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
from collections import deque
class Solution(object):
def orangesRotting(self, grid):
rows = len(grid)
if rows == 0:
return -1
cols = len(grid[0])
fresh_cnt = 0
rotten = deque()
for r in range(rows):
for c in range(cols):
if grid[r][c] == 2:
rotten.append((r,c))
elif grid[r][c] == 1:
fresh_cnt += 1
minutes_passed = 0
while rotten and fresh_cnt > 0:
minutes_passed += 1
for _ in range(len(rotten)):
x, y = rotten.popleft()
for dx, dy in [(1,0), (-1,0), (0,1), (0,-1)]:
xx, yy = x + dx, y + dy
if xx < 0 or xx == rows or yy < 0 or yy == cols:
continue
if grid[xx][yy] == 0 or grid[xx][yy] == 2:
continue
fresh_cnt -= 1
grid[xx][yy] = 2
rotten.append((xx, yy))
return minutes_passed if fresh_cnt == 0 else -1