반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pytorch
- dfs
- SSAFY 입학식
- 알고리즘
- 코딩 교육
- 전이학습
- bfs
- 프로그래머스 고득점 kit
- ssafy 7기 합격
- 싸피 7기 입학식
- SWEA
- 삼성 청년 SW 아카데미
- DenseNet
- SSAFY
- ssafy 7기 교수님
- 백준7576 bfs
- 이코테
- 백준
- SSAFY 8기
- DP
- Learning
- React
- SSAFYcial
- git
- 프로그래머스
- 코딩교육
- 유니온 파인드
- 웹 표준 사이트 만들기
- ssafy 7기
- 삼성청년sw아카데미
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준1735 최단경로 - 파이썬 본문
728x90
반응형
내일 코테를 앞두고 백준에서 최단경로 알고리즘 문제를 풀어보았다. 한 지점에서 다른 모든 지점까지의 최단 경로를 찾는 문제인데 내일 이런 문제 한 문제만 나오길 빌면서..
https://www.acmicpc.net/problem/1753
[풀이 코드]
from sys import stdin
import heapq
INF = 300000
input = stdin.readline
v, e = map(int, input().split())
start = int(input())
distance = [INF] * (v + 1)
graph = [[] for i in range(v+1)]
for _ in range(e):
a, b, c = map(int, input().split())
graph[a].append((b, c))
def solution(start):
q = []
heapq.heappush(q, (0, start))
distance[start] = 0
while q:
dist, now = heapq.heappop(q)
if distance[now] < dist:
continue
for i in graph[now]:
cost = dist + i[1]
if cost < distance[i[0]]:
distance[i[0]] = cost
heapq.heappush(q, (cost, i[0]))
solution(start)
for i in range(1, v+1):
if distance[i] == INF:
print("INF")
else:
print(distance[i])
- 역시나 이코테에서 다룬 코드를 쓰면 되는데 처음엔 이해가 잘 안돼서 손 코딩으로 열심히 이해하면서 암기했다..!
- 우선순위 큐를 활용하는게 훨씬 코드가 간결해진다.
728x90
반응형
'알고리즘 > 최단경로' 카테고리의 다른 글
[알고리즘] 백준11404 플로이드 - 파이썬 (0) | 2021.09.14 |
---|
Comments