https://www.acmicpc.net/problem/1753
import heapq
import sys
input = sys.stdin.readline
INF = int(1e9)
v, e = map(int, input().split())
k = int(input())
graph = [[] for i in range(v+1)]
distance = [INF] * (v+1)
for _ in range(e):
x, y, w = map(int, input().split())
graph[x].append((y, w))
def dijkstra(k):
q = []
heapq.heappush(q, (0, k))
distance[k] = 0
while q:
dist, now = heapq.heappop(q)
if distance[now] < dist:
continue
for i in graph[now]:
cost = dist + i[1]
if cost < distance[i[0]]:
distance[i[0]] = cost
heapq.heappush(q, (cost, i[0]))
dijkstra(k)
for i in range(1, v+1):
if distance[i] == INF:
print("INF")
else:
print(distance[i])
정말 어이가없지ㅠ 처음에 틀려서 20분 넘게 고민했는데
무한값을 터무니없게 작게 설정해서 그런거였다ㅠ
다익스트라로 풀면 됨.!
'알고리즘 > 백준' 카테고리의 다른 글
백준 11657: 타임머신 (Python) (0) | 2022.07.18 |
---|---|
백준 1504: 특정한 최단 경로 (Python) (0) | 2022.07.12 |
백준 12865: 평범한 배낭 (Python) (0) | 2022.04.11 |
백준 1912: 연속합 (Python) (0) | 2022.04.08 |
백준 11053: 가장 긴 증가하는 부분 수열 (Python) (0) | 2022.04.07 |