백준 / 최소비용 구하기 / 1916번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다.문제 제목: 최소비용 구하기 / 1916번 (골드 5단계)문제 사이트: https://www.acmicpc.net/problem/1916 문제 설명 나의 풀이 1번 코드from collections import dequeINF = 1e9# 다익스트라 알고리즘def usg(graph, start, target): q = deque() q.append((start, 0)) d = [INF] * (len(graph) + 1) d[start] = 0 while q: current, distance = q.popleft() if (d[current] 문제의 조건은 양방향이 아닌 단방향만 고려했을 경우를 생각하고 풀어야하지만 ..