일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 그리디알고리즘
- 실습
- Planned
- Kruskal
- Bellman-Ford
- 함밥
- DFS
- 마라마라빔
- SQL
- 모각코
- 백준
- 프로그래머스
- DP
- codetree
- 종합설계
- programmers
- minimum spanning tree
- 장고
- 최소스패닝트리
- 데이터베이스
- 파이썬
- 백트래킹
- 알고리즘
- 동적계획법
- 소프트웨어공학
- MyPlaylist
- django
- 코드트리
- BFS
- B대면노래방
Archives
- Today
- Total
Leta Learns
[Python] 백준 1916번 - 최소비용 구하기 본문
문제 https://www.acmicpc.net/problem/1916
어제 푼 다익스트라 코드 이용해서 조금만 손 봤더니 그냥 풀렸다..
다익스트라 코드 외우면 이 문제 저 문제 풀기 수월하겠네. 외워야겠다.
시작점, 도착점만 입력 받아서 다익스트라 이용해서 dist 배열 구하고 변수(cost) 에 저장한 다음,
해당 배열의 도착점 인덱스 값을 출력해주면 된다. (cost[end])
import sys
import heapq
input = sys.stdin.readline
def dijkstra(start):
q = []
dist = [float('inf') for i in range(n+1)]
heapq.heappush(q, (0, start)) #(dist, current)
dist[start] = 0
while q:
distance, current = heapq.heappop(q)
if distance > dist[current]:
continue
for i_end, i_cost in graph[current]:
new_dist = distance + i_cost
if new_dist < dist[i_end]:
dist[i_end] = new_dist
heapq.heappush(q, (new_dist, i_end))
return dist
n = int(input())
m = int(input())
graph = [[] for i in range(n+1)]
for i in range(m):
a, b, c = map(int, input().split()) #a: 출발, b: 도착, c: 비용
graph[a].append([b, c])
start, end = map(int, input().split())
cost = dijkstra(start)
print(cost[end])
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1865번 - 웜홀 (0) | 2021.08.05 |
---|---|
[Python] 백준 11657번 - 타임머신 (0) | 2021.08.05 |
[Python] 백준 1238번 - 파티 (1) | 2021.08.02 |
[Python] 백준 1949번 - 우수 마을 (0) | 2021.07.28 |
[Python] 백준 1922번 - 네트워크 연결 (0) | 2021.07.27 |
Comments