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
- you only look once
- Vocoder
- DCTTS
- 딥러닝
- tacotron
- 한국어 tts
- korean tts
- 트레이닝
- 딥러닝 보코더
- 한국어 음성 합성
- text-to-speech
- melgan
- singing voice synthesis
- 음성 합성
- 학습
- 딥러닝 음성 합성
- 윈도우
- YOLO
- 타코트론
- TTS
- deep voice
- waveglow
- 보코더
- 노래합성
Archives
- Today
- Total
chldkato
백준 2206 벽 부수고 이동하기 (파이썬) 본문
https://www.acmicpc.net/problem/2206
벽을 하나씩 부수고 매 경우마다 bfs를 수행하면 시간 초과가 뜬다
1. 맵을 3차원 리스트로 만들어 세번째 차수에는 벽을 뚫었는지 여부를 저장한다
2. 벽이 아닌 경우 일반적인 bfs를 수행한다
3. 벽이고 그 벽을 뚫은 적이 없는 경우 세번째 차수 값을 수정하여 큐에 넣어준다
4. 결과적으로 한 번의 bfs 수행으로 벽을 한 개까지 부쉈을 때 최단 거리를 구할 수 있다
from collections import deque
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs():
q.append([0, 0, 0])
c[0][0][0] = 1
while q:
x, y, z = 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] == 0 and c[nx][ny][z] == -1:
c[nx][ny][z] = c[x][y][z] + 1
q.append([nx, ny, z])
elif z == 0 and a[nx][ny] == 1 and c[nx][ny][z+1] == -1:
c[nx][ny][z+1] = c[x][y][z] + 1
q.append([nx, ny, z+1])
n, m = map(int, input().split())
a = [list(map(int, input())) for _ in range(n)]
c = [[[-1]*2 for _ in range(m)] for _ in range(n)]
q = deque()
bfs()
ans1, ans2 = c[n-1][m-1][0], c[n-1][m-1][1]
if ans1 == -1 and ans2 != -1:
print(ans2)
elif ans1 != -1 and ans2 == -1:
print(ans1)
else:
print(min(ans1, ans2))
'백준' 카테고리의 다른 글
백준 2589 보물섬 (파이썬) (4) | 2020.02.16 |
---|---|
백준 1389 케빈 베이컨의 6단계 법칙 (파이썬) (0) | 2020.02.16 |
백준 2644 촌수계산 (파이썬) (0) | 2020.02.16 |
백준 13460 구슬 탈출 2 (파이썬) (3) | 2020.02.16 |
백준 10026 적록색약 (파이썬) (2) | 2020.02.16 |
Comments