728x90
반응형
기본적인 다익스트라 문제이긴 하다만, N-1번째 분기점을 제외하고 상대의 시야에 보이지 않는 분기점에만
방문해야 한다는 차이점이 있다.
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] and check[v] == 0:
dis[v] = cost
heapq.heappush(q, (cost, v))
N, M = map(int, input().split())
graph = [[] for _ in range(N+1)]
dis = [INF]*(N+1)
check = list(map(int, input().split()))
check[-1] = 0
for _ in range(M):
a, b, t = map(int, input().split())
graph[a].append((b, t))
graph[b].append((a, t))
dijkstra(0)
print(dis[N-1] if dis[N-1] != INF else -1)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14593번 2017 아주대학교 프로그래밍 경시대회 (Large)(python) (0) | 2021.03.23 |
---|---|
백준 알고리즘 1417번 국회의원 선거(python) (0) | 2021.03.23 |
백준 알고리즘 14284번 간선 이어가기 2(python) (0) | 2021.03.23 |
백준 알고리즘 5972번 택배 배송(python) (0) | 2021.03.23 |
백준 알고리즘 11403번 경로 찾기(python) (0) | 2021.03.22 |