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
- 학습
- DCTTS
- 타코트론
- 트레이닝
- text-to-speech
- 딥러닝
- TTS
- 보코더
- Vocoder
- 노래합성
- YOLO
- 음성 합성
- singing voice synthesis
- korean tts
- 딥러닝 보코더
- you only look once
- deep voice
- 윈도우
- melgan
- waveglow
- 딥러닝 음성 합성
- tacotron
- 한국어 음성 합성
Archives
- Today
- Total
chldkato
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) 본문
https://www.acmicpc.net/problem/4485
(0,0)에서 (n-1,n-1)까지 도둑루피의 크기가 최소가 되는 경로를 다익스트라로 구한 후 잃는 루피 값을 출력
from heapq import heappush, heappop
import sys
INF = sys.maxsize
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def dij(cnt):
d, q = [[INF]*n for _ in range(n)], []
heappush(q, [a[0][0], 0, 0])
d[0][0] = 0
while q:
w, x, y = heappop(q)
if x == n-1 and y == n-1:
print("Problem {0}: {1}".format(cnt, w))
return
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n:
nw = w + a[nx][ny]
if nw < d[nx][ny]:
d[nx][ny] = nw
heappush(q, [nw, nx, ny])
cnt = 1
while True:
n = int(input())
if n == 0:
break
a = [list(map(int, input().split())) for _ in range(n)]
dij(cnt)
cnt += 1
'백준' 카테고리의 다른 글
백준 1325 효율적인 해킹 (파이썬) (0) | 2020.02.17 |
---|---|
백준 1613 역사 (파이썬) (0) | 2020.02.17 |
백준 1504 특정한 최단 경로 (파이썬) (0) | 2020.02.17 |
백준 1238 파티 (파이썬) (0) | 2020.02.17 |
백준 1261 알고스팟 (파이썬) (0) | 2020.02.17 |
Comments