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
- Vocoder
- text-to-speech
- waveglow
- 한국어 tts
- 윈도우
- 한국어 음성 합성
- 타코트론
- YOLO
- 음성 합성
- 보코더
- 딥러닝 음성 합성
- 학습
- 딥러닝
- you only look once
- TTS
- 트레이닝
- deep voice
- singing voice synthesis
- tacotron
- melgan
- DCTTS
- korean tts
- 노래합성
- 딥러닝 보코더
Archives
- Today
- Total
chldkato
백준 6593 상범 빌딩 (파이썬) 본문
https://www.acmicpc.net/problem/6593
1. 동서남북 뿐만 아니라 상하까지 고려하여 이동 좌표를 설정한다
2. 시작 지점에서 E에 도착할 때까지 bfs를 수행한 후 조건에 맞게 출력
from collections import deque
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0, 0, 0]
dy = [0, 0, 1, -1, 0, 0]
dz = [0, 0, 0, 0, 1, -1]
def bfs(x, y, z):
q.append([x, y, z])
d[x][y][z] = 1
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 < l and 0 <= ny < r and 0 <= nz < c:
if a[nx][ny][nz] == 'E':
print("Escaped in {0} minute(s).".format(d[x][y][z]))
return
if a[nx][ny][nz] == '.' and d[nx][ny][nz] == 0:
d[nx][ny][nz] = d[x][y][z] + 1
q.append([nx, ny, nz])
print("Trapped!")
while True:
l, r, c = map(int, input().split())
if l == 0 and r == 0 and c == 0:
break
a = [[[]*c for _ in range(r)] for _ in range(l)]
d = [[[0]*c for _ in range(r)] for _ in range(l)]
q = deque()
for i in range(l):
a[i] = [list(map(str, input().strip())) for _ in range(r)]
input()
for i in range(l):
for j in range(r):
for k in range(c):
if a[i][j][k] == 'S':
bfs(i, j, k)
'백준' 카테고리의 다른 글
백준 10159 저울 (파이썬) (0) | 2020.02.18 |
---|---|
백준 2458 키 순서 (파이썬) (1) | 2020.02.18 |
백준 2251 물통 (파이썬) (0) | 2020.02.18 |
백준 9372 상근이의 여행 (파이썬) (0) | 2020.02.18 |
백준 5427 불 (파이썬) (0) | 2020.02.17 |
Comments