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
61
62
63
64
|
# 7576 토마토
# bfs
# Pypy3 912ms
def count_zero(board): # 0이 몇개 있는지 파악합니다.
count = 0
for i in range(M):
for j in range(N):
if board[i][j] == '0':
count += 1
return count
# BFS 이동
dx = [0, 1, 0, -1]
dy = [-1, 0, 1, 0]
def move(x, y):
global value
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < M and 0 <= ny < N :
if board[nx][ny] == '0':
board[nx][ny] = '1'
value -= 1 # 시간을 줄이기 위해 0의 개수를 실시간으로 파악
LST_temp.append((nx, ny)) # 시간을 줄이기 위해 새롭게 탐색해야 하는 곳 파악
board[x][y] = '2' # 시간을 줄이기 위해 기존 위치 제거
N, M = map(int, input().split())
board = [input().split() for _ in range(M)]
count = M * N
prev = 0
c = 0
value = count_zero(board)
LST = []
LST_temp = []
for i in range(M): # 처음에 1인 곳 찾기
for j in range(N):
if board[i][j] == '1':
LST.append((i, j))
while True: # 0의 개수가 변하지 않을 때까지
c += 1
prev = value
for p in LST:
move(p[0], p[1])
LST = LST_temp[:]
LST_temp = []
count -= 1
if value == prev:
break
if value != 0:
print(-1)
else:
print(c - 1)
|
'프로그래밍' 카테고리의 다른 글
[백준 2468 안전 영역] 파이썬 풀이 (0) | 2020.02.27 |
---|---|
[백준 2644 촌수 계산] 파이썬 (0) | 2020.02.26 |
[백준 3184 파이썬 ] 양 (0) | 2020.02.25 |
[백준 7459 파이썬] 토마토 (0) | 2020.02.25 |
[백준 3055 파이썬] 탈출 (0) | 2020.02.25 |