티스토리 뷰
https://www.acmicpc.net/problem/1753
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
31
32
33
34
35
36
37
38
39
|
import heapq
import sys
input = sys.stdin.readline
INF = int(1e9)
v, e = map(int, input().split())
start = int(input())
dist = [INF] * (v + 1)
route = dict()
for _ in range(e):
u, d, w = map(int, input().split())
if u not in route:
route[u] = list()
route[u].append((w, d))
dist[start] = 0
q = list()
heapq.heappush(q, (0, start))
while q:
cost, now = heapq.heappop(q)
if cost > dist[now]:
continue
if now not in route:
continue
for c, node in route[now]:
if dist[node] > cost + c:
dist[node] = cost + c
heapq.heappush(q, (dist[node], node))
for i in range(1, v + 1):
if dist[i] < INF:
print(dist[i])
else:
print('INF')
|
cs |
다익스트라 알고리즘을 이용해서 풀면 된다.
파이썬3을 이용할 경우, sys.stdin.readline 안쓰면 시간 펑난다.
PyPy3로 돌리면 그냥 input() 써도 안터지더라
'algorithm'''problem solve' 카테고리의 다른 글
[백준] 9251 - LCS (DP) (0) | 2020.11.05 |
---|---|
[백준] 11660 - 구간 합 구하기 5 (DP) (0) | 2020.10.29 |
[백준] 1991 - 트리 순회 (재귀, 트리) (0) | 2020.10.29 |
[백준] 1629 - 곱셈(분할 정복, 수학) (0) | 2020.10.28 |
[백준] 11725 - 트리의 부모 찾기 (BFS) (0) | 2020.10.28 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 완전탐색
- 백트래킹
- c
- webOS
- 한화큐셀
- BFS
- c++
- 1932
- 정렬
- 인공지능
- 브루트포스
- 알고리즘
- BaekJoon
- 프로그래머스
- Dynamic Programming
- 동적 계획법
- DP
- 이분탐색
- DFS
- LG
- 백준
- PyPy3
- 컨트리뷰톤
- 파이썬
- 오픈소스
- 코딩
- 플로이드 와셜
- 구현
- 카카오
- 피보나치
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함