Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 오픽
- 다이나믹프로그래밍
- 오픽가격
- 피보나치수열
- 오픽공부법
- 디피
- XML주석
- 오픽노잼공부방법
- dynamicProgramming
- 주석
- English
- XML
- 오픽점수잘받는방법
- 영어회화
- topdown
- 메모이제이션
- 안드로이드주석
- dp
- 이진탐색
- 오픽노잼
- ㅂ
- 안드로이드
- fibo
- 영어말하기
- 이진탐색 #나무 자르기
- stack 스택
- opic
- 탑다운
- 바텀업
Archives
RUBY
[백준] 최단 경로 본문
출처:: www.acmicpc.net/problem/1753
분류:: 다익스트라
1. 문제 이해 및 해결과정
2. 풀이방법
1. 다익스트라
#최단경로
#https://www.acmicpc.net/problem/1753
import sys
import heapq
sys.stdin = open("input.txt","r")
input=sys.stdin.readline
v,e=map(int,input().split()) #정점의 개수, 간선의 개수
start=int(input())
graph = [[] for _ in range(v+1)]
visited = [False]*(v+1)
INF=1e9
dist=[INF]*(v+1)
for _ in range(e):
a,b,c=map(int,input().split())
graph[a].append((b,c)) #a에서 b로 가는 가중치 c
def dijkstra(start):
dist[start]=0
visited[start]=True
q=[]
heapq.heappush(q,(0,start))
while q:
c,now= heapq.heappop(q) #가장 작은 노드의 비용과 노드번호
if dist[now]<c: #이미 처리된 적이 있는 노드면
continue
for i in graph[now]:
cost=dist[now]+i[1]
if dist[i[0]]>cost: #새로운 cost가 기존 거리보다 작다면
dist[i[0]]=cost
heapq.heappush(q,(cost,i[0]))
dijkstra(start)
for i in range(1,v+1):
if dist[i]==INF:
print("INF")
else:
print(dist[i])
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 1로 만들기 (0) | 2020.09.26 |
---|---|
[백준] 꽃잎 (0) | 2020.09.24 |
[백준] 빗물 (0) | 2020.09.23 |
[백준] 부분합 (0) | 2020.09.21 |
[백준] 로봇 청소기 | 삼성 (0) | 2020.09.20 |
Comments