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
65
66
67
68
69
70
|
# 7459 토마토
# BFS
# PyPy3 1504
def count_zero(board): # 0이 몇개 있는지 파악합니다.
count = 0
for i in range(M):
for j in range(N):
for h in range(H):
if board[h][i][j] == '0':
count +=1
return count
# BFS 이동
dx = [0,1,0,-1,0,0]
dy = [-1,0,1,0,0,0]
dh = [0,0,0,0,1,-1]
def move(x,y,h):
global value
for i in range(6):
nx = x + dx[i]
ny = y + dy[i]
nh = h + dh[i]
if 0 <= nx < M and 0 <= ny < N and 0<=nh <H:
if board[nh][nx][ny] == '0':
board[nh][nx][ny] = '1'
value -=1 # 시간을 줄이기 위해 0의 개수를 실시간으로 파악
LST_temp.append((nx, ny, nh)) # 시간을 줄이기 위해 새롭게 탐색해야 하는 곳 파악
board[h][x][y] = '2' # 시간을 줄이기 위해 기존 위치 제거
N, M, H = map(int, input().split())
board = [[input().split() for _ in range(M)] for _ in range(H)]
count = M*N*H
prev = 0
c = 0
value = count_zero(board)
LST = []
LST_temp = []
for i in range(M): # 처음에 1인 곳 찾기
for j in range(N):
for h in range(H):
if board[h][i][j] == '1':
LST.append((i, j, h))
while True: # 0의 개수가 변하지 않을 때까지
c += 1
prev = value
for p in LST:
move(p[0], p[1], p[2])
LST = LST_temp[:]
LST_temp = []
count -= 1
if value == prev:
break
if value != 0:
print(-1)
else:
print(c-1)
|
'프로그래밍' 카테고리의 다른 글
[백준 7576 토마토 ] 파이썬 풀이 (0) | 2020.02.25 |
---|---|
[백준 3184 파이썬 ] 양 (0) | 2020.02.25 |
[백준 3055 파이썬] 탈출 (0) | 2020.02.25 |
[백준 6603 파이썬] 로또 (0) | 2020.02.25 |
[백준 7562 파이썬] 나이트 이동 (0) | 2020.02.25 |