1753-백준
백준
다익스트라
시작점으로 부터 나머지 정점간의 최단거리
import heapq
import sys
input = sys.stdin.readline
INF = int(1e9)
V, E = map(int, input().split())
K = int(input())
graph = [[] for _ in range(V+1)]
distance = [INF]*(V+1)
for _ in range(E):
a, b, c = map(int, input().split())
graph[a].append((b,c))
def dijkstra(start):
q = []
heapq.heappush(q, (0, start))
distance[start] = 0
while q:
w, vertex = heapq.heappop(q)
if distance[vertex] < w:
continue
for i in graph[vertex]:
cost = w + 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])
Author And Source
이 문제에 관하여(1753-백준), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dev_halo/1753-백준저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)