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
- singing voice synthesis
- 딥러닝 음성 합성
- melgan
- Vocoder
- 딥러닝 보코더
- TTS
- 트레이닝
- 딥러닝
- 노래합성
- 한국어 tts
- 윈도우
- 한국어 음성 합성
- 음성 합성
- tacotron
- waveglow
- 학습
- 타코트론
- DCTTS
- text-to-speech
- korean tts
- you only look once
- 보코더
- deep voice
- YOLO
Archives
- Today
- Total
chldkato
백준 1238 파티 (파이썬) 본문
https://www.acmicpc.net/problem/1238
다익스트라로 최단 시간에 해당하는 경로를 구한다
1. 끝점 까지 가는 최단 시간 경로를 구한다
2. 다시 시작점으로 돌아오는 최단 시간 경로를 구한다
3. 1번과 2번값을 더하여 저장한 후 그 중에서 최대값을 출력
import sys, heapq
INF = sys.maxsize
input = sys.stdin.readline
def dij(x):
d = [INF]*n
heapq.heappush(heap, [0, x])
d[x] = 0
while heap:
w, x = heapq.heappop(heap)
for nw, nx in a[x]:
nw += w
if nw < d[nx]:
d[nx] = nw
heapq.heappush(heap, [nw, nx])
return d
n, m, t = map(int, input().split())
a = [[]*n for _ in range(n)]
heap = []
for i in range(m):
x, y, w = map(int, input().split())
a[x-1].append([w, y-1])
ans = [0]*n
for i in range(n):
d = dij(i)
ans[i] += d[t-1]
d = dij(t-1)
ans[i] += d[i]
print(max(ans))
'백준' 카테고리의 다른 글
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) (0) | 2020.02.17 |
---|---|
백준 1504 특정한 최단 경로 (파이썬) (0) | 2020.02.17 |
백준 1261 알고스팟 (파이썬) (0) | 2020.02.17 |
백준 11559 Puyo Puyo (파이썬) (0) | 2020.02.17 |
백준 1967 트리의 지름 (파이썬) (1) | 2020.02.17 |
Comments