728x90
반응형
기본적인 다익스트라 문제이다.
import heapq
import sys
INF = sys.maxsize
# input = sys.stdin.readline
def dijkstra(start):
q = []
heapq.heappush(q, (0, start))
dis[start] = 0
while q:
d, now = heapq.heappop(q)
if dis[now] < d:
continue
for v, w in graph[now]:
cost = d + w
if cost < dis[v]:
dis[v] = cost
heapq.heappush(q, (cost, v))
n, m = map(int, input().split())
graph = [[] for _ in range(n+1)]
dis = [INF]*(n+1)
for _ in range(m):
a, b, c = map(int, input().split())
graph[a].append((b, c))
graph[b].append((a, c))
s, t = map(int, input().split())
dijkstra(s)
print(dis[t])
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1417번 국회의원 선거(python) (0) | 2021.03.23 |
---|---|
백준 알고리즘 17396번 백도어(python) (2) | 2021.03.23 |
백준 알고리즘 5972번 택배 배송(python) (0) | 2021.03.23 |
백준 알고리즘 11403번 경로 찾기(python) (0) | 2021.03.22 |
백준 알고리즘 2458번 키 순서(python) (0) | 2021.03.22 |