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 | 31 |
Tags
- DCTTS
- text-to-speech
- 딥러닝
- 노래합성
- 타코트론
- 트레이닝
- 딥러닝 음성 합성
- 딥러닝 보코더
- 음성 합성
- korean tts
- 한국어 tts
- Vocoder
- melgan
- tacotron
- you only look once
- waveglow
- 한국어 음성 합성
- deep voice
- TTS
- 윈도우
- singing voice synthesis
- 학습
- YOLO
- 보코더
Archives
- Today
- Total
chldkato
백준 3055 탈출 (파이썬) 본문
https://www.acmicpc.net/problem/3055
1. 물이 차있을 예정인 곳은 이동하지 못하므로 물을 이동시키고 고슴도치를 이동시키는 순으로 bfs를 수행한다
2. 반드시 물은 비버굴에도 이동할 수 없도록 설계해야한다
3. 고슴도치가 비버굴에 도착하면 이동한 시간을 출력
4. 큐가 비어도 비버굴에 도착하지 못하면 더이상 이동할 수 없으므로 KAKTUS 출력
from collections import deque
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y):
q.append([x, y])
c[x][y] = 1
while q:
qlen = len(q)
while qlen:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < m:
if a[nx][ny] == '.' and c[nx][ny] == 0:
c[nx][ny] = c[x][y] + 1
q.append([nx, ny])
elif a[nx][ny] == 'D':
print(c[x][y])
return
qlen -= 1
water()
print("KAKTUS")
return
def water():
qlen = len(wq)
while qlen:
x, y = wq.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < m:
if a[nx][ny] == '.':
a[nx][ny] = '*'
wq.append([nx, ny])
qlen -= 1
n, m = map(int, input().split())
a = [list(map(str, input())) for _ in range(n)]
c = [[0]*m for _ in range(n)]
q, wq = deque(), deque()
for i in range(n):
for j in range(m):
if a[i][j] == 'S':
x1, y1 = i, j
a[i][j] = '.'
elif a[i][j] == '*':
wq.append([i, j])
water()
bfs(x1, y1)
'백준' 카테고리의 다른 글
백준 5014 스타트링크 (파이썬) (0) | 2020.02.17 |
---|---|
백준 1707 이분 그래프 (파이썬) (0) | 2020.02.16 |
백준 2589 보물섬 (파이썬) (4) | 2020.02.16 |
백준 1389 케빈 베이컨의 6단계 법칙 (파이썬) (0) | 2020.02.16 |
백준 2206 벽 부수고 이동하기 (파이썬) (2) | 2020.02.16 |
Comments