Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- TTS
- 딥러닝 보코더
- 음성 합성
- 한국어 음성 합성
- YOLO
- 보코더
- 딥러닝 음성 합성
- 타코트론
- 한국어 tts
- 트레이닝
- DCTTS
- 딥러닝
- text-to-speech
- 노래합성
- singing voice synthesis
- tacotron
- korean tts
- 학습
- 윈도우
- deep voice
- waveglow
- Vocoder
- melgan
- you only look once
Archives
- Today
- Total
chldkato
백준 7569 토마토 (파이썬) 본문
https://www.acmicpc.net/problem/7569
z축을 추가하면 풀리는 문제
주어진 입력에서 모든 토마토를 큐에 넣은 후 bfs를 수행하여 걸리는 시간을 출력
from collections import deque
import sys
dx = [1, -1, 0, 0, 0, 0]
dy = [0, 0, 1, -1, 0, 0]
dz = [0, 0, 0, 0, 1, -1]
def bfs():
while q:
x, y, z = q.popleft()
for i in range(6):
nx = x + dx[i]
ny = y + dy[i]
nz = z + dz[i]
if 0 <= nx < k and 0 <= ny < n and 0 <= nz < m:
if a[nx][ny][nz] == 0 and c[nx][ny][nz] == 0:
q.append([nx, ny, nz])
a[nx][ny][nz] = 1
c[nx][ny][nz] = c[x][y][z] + 1
m, n, k = map(int, input().split())
a = [[list(map(int, input().split())) for _ in range(n)] for _ in range(k)]
c = [[[0]*m for _ in range(n)] for _ in range(k)]
q = deque()
for i in range(k):
for j in range(n):
for l in range(m):
if a[i][j][l] == 1 and c[i][j][l] == 0:
q.append([i, j, l])
c[i][j][l] = 1
bfs()
for i in a:
for j in i:
if 0 in j:
print(-1)
sys.exit()
ans = 0
for i in c:
for j in i:
list_max = max(j)
ans = max(ans, list_max)
print(ans-1)
'백준' 카테고리의 다른 글
백준 2468 안전 영역 (파이썬) (0) | 2020.02.16 |
---|---|
백준 2583 영역 구하기 (파이썬) (0) | 2020.02.16 |
백준 6603 로또 (파이썬) (3) | 2020.02.16 |
백준 7562 나이트의 이동 (파이썬) (0) | 2020.02.16 |
백준 14502 연구소 (파이썬) (0) | 2020.02.16 |
Comments