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
- Vocoder
- singing voice synthesis
- 노래합성
- 보코더
- text-to-speech
- YOLO
- deep voice
- you only look once
- melgan
- 윈도우
- korean tts
- 한국어 음성 합성
- 트레이닝
- TTS
- 딥러닝 음성 합성
- 딥러닝
- waveglow
- DCTTS
- tacotron
- 타코트론
- 학습
- 딥러닝 보코더
Archives
- Today
- Total
chldkato
백준 9376 탈옥 (파이썬) 본문
https://www.acmicpc.net/problem/9376
풀이를 생각하는데 정말 오래 걸렸던 문제
외부에서 죄수에 도착하기, 죄수가 순차적으로 이동하기 등 여러 방법을 생각해봤고
죄수가 bfs를 한 번씩 이동한 후 나중에 문을 연 횟수를 합산하려고 했다
하지만 죄수가 만나는 경우에 대한 조건문을 추가하면서 풀이가 복잡해져서 다른 방법을 생각한 것이 아래와 같다
1. 입력받은 지도 외곽에 . 을 추가하여 (h+2, w+2) 크기의 행렬로 바꾼다
2. (0, 0)과 죄수1, 죄수2에 대한 bfs를 각각 실행한다
3. bfs로 이동할 때 이동할 수 있는만큼 이동한 다음 문을 열기위해 . 에 도착하면 appendleft를 하여 먼저 처리한다
4. bfs를 끝낸 후 각 케이스에 대한 문을 연 횟수를 더하고 이 때 최소값을 출력한다
단, 그 위치가 문일 경우 -2를 하여 중복해서 여는 경우를 빼준다
from collections import deque
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y):
c = [[-1] * (w + 2) for _ in range(h + 2)]
q.append([x, y])
c[x][y] = 0
while q:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < h+2 and 0 <= ny < w+2:
if c[nx][ny] == -1:
if a[nx][ny] == '.':
c[nx][ny] = c[x][y]
q.appendleft([nx, ny])
elif a[nx][ny] == '#':
c[nx][ny] = c[x][y] + 1
q.append([nx, ny])
return c
def new_map():
for i in a:
i.insert(0, '.')
i.append('.')
a.insert(0, ['.' for _ in range(w+2)])
a.append(['.' for _ in range(w+2)])
tc = int(input())
while tc:
h, w = map(int, input().split())
a = [list(input().strip()) for _ in range(h)]
q = deque()
new_map()
temp = []
for i in range(h + 2):
for j in range(w + 2):
if a[i][j] == '$':
temp.extend([i, j])
a[i][j] = '.'
x1, y1, x2, y2 = temp
c1 = bfs(0, 0)
c2 = bfs(x1, y1)
c3 = bfs(x2, y2)
ans = sys.maxsize
for i in range(h+2):
for j in range(w+2):
if c1[i][j] != -1 and c2[i][j] != -1 and c3[i][j] != -1:
cnt = c1[i][j] + c2[i][j] + c3[i][j]
if a[i][j] == '#':
cnt -= 2
ans = min(ans, cnt)
print(ans)
tc -= 1
'백준' 카테고리의 다른 글
백준 6087 레이저 통신 (파이썬) (0) | 2020.02.23 |
---|---|
백준 2933 미네랄 (파이썬) (0) | 2020.02.23 |
백준 3187 양치기 꿍 (파이썬) (2) | 2020.02.22 |
백준 12761 돌다리 (파이썬) (0) | 2020.02.22 |
백준 3197 백조의 호수 (파이썬) (0) | 2020.02.21 |
Comments