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
- 딥러닝 보코더
- 노래합성
- YOLO
- 트레이닝
- melgan
- tacotron
- 한국어 음성 합성
- 보코더
- you only look once
- 윈도우
- 한국어 tts
- 음성 합성
- 학습
- 딥러닝 음성 합성
- waveglow
- deep voice
- 타코트론
- TTS
- singing voice synthesis
- korean tts
- text-to-speech
- DCTTS
Archives
- Today
- Total
chldkato
백준 1504 특정한 최단 경로 (파이썬) 본문
https://www.acmicpc.net/problem/1504
거쳐야하는 두 개의 정점을 a, b라고 하면
시작 - a - b - 끝, 시작 - b - a -끝 두 케이스에 대한 경로를 다익스트라로 구하면 된다
그리고 발생할 수 있는 모든 케이스를 고려하여 출력이 제대로 나올 수 있도록 설계
from heapq import heappush, heappop
import sys
INF = sys.maxsize
input = sys.stdin.readline
def dij(x):
d = [INF]*n
heappush(q, [0, x])
d[x] = 0
while q:
w, x = heappop(q)
for nw, nx in a[x]:
nw += w
if nw < d[nx]:
d[nx] = nw
heappush(q, [nw, nx])
return d
n, e = map(int, input().split())
a = [[] for _ in range(n)]
q = []
for _ in range(e):
x, y, w = map(int, input().split())
a[x-1].append([w, y-1])
a[y-1].append([w, x-1])
x, y = map(int, input().split())
d0 = dij(0); d1 = dij(x-1); d2 = dij(y-1)
ans1, ans2, flag1, flag2 = sys.maxsize, sys.maxsize, 0, 0
if d0[x-1] != INF and d1[y-1] != INF and d2[n-1] != INF:
ans1 = d0[x-1] + d1[y-1] + d2[n-1]
else:
flag1 = 1
if d0[y-1] != INF and d2[x-1] != INF and d1[n-1] != INF:
ans2 = d0[y-1] + d2[x-1] + d1[n-1]
else:
flag2 = 1
if flag1 and flag2:
print(-1)
else:
print(min(ans1, ans2))
'백준' 카테고리의 다른 글
백준 1613 역사 (파이썬) (0) | 2020.02.17 |
---|---|
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) (0) | 2020.02.17 |
백준 1238 파티 (파이썬) (0) | 2020.02.17 |
백준 1261 알고스팟 (파이썬) (0) | 2020.02.17 |
백준 11559 Puyo Puyo (파이썬) (0) | 2020.02.17 |
Comments