-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
18-alstjr7437 #66
18-alstjr7437 #66
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์์ง ์ต์ํ์ง ์์ ๋ค์ต์คํธ๋ผ, ์ค๋ PR ์ ํ ๋ฒ ๋์ ํด๋ณด๊ฒ ์ต๋๋ค. ๐ฅน
import sys
from heapq import *
input=sys.stdin.readline
vertex, edge = map(int, input().split())
start_vertex = int(input())
graph = {v : [] for v in range(1,vertex+1)}
for _ in range(edge) :
start, end, weight = map(int, input().split())
graph[start].append((end, weight))
print(graph)
heap = []
result = [int(1e9)] * (vertex+1)
result[start_vertex] = 0
heappush(heap, (start_vertex,0))
while heap :
current_node, current_weight = heappop(heap)
print(current_node, current_weight, end=" : ")
if result[current_node] < current_weight :
continue
for node, weight in graph[current_node]:
print(node, weight)
distance = current_weight + weight
if distance < result[node]:
result[node] = distance
heappush(heap, (node, distance))
for i in range(1,vertex+1):
if result[i] == int(1e9):
print('INF')
else :
print(result[i])
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ค,, ๊ทธ๋ฌ๊ณ ๋ณด๋ ๋ ธ๋ ๋ฒํธ๊ฐ ์์ ์์ผ๋ฉด ํํ์์ ๋บ ๋ ๊ฐ์ค์น ๊ธฐ์ค์ด ์๋๋ผ ๋ ธ๋ ๋ฒํธ๋ฅผ ๊ธฐ์ค์ผ๋ก ๋จผ์ ๋นผ๊ฒ ๋ค์. ์์๋ ๋ฌธ์ ์กฐ๊ฑด์ ์ ์ฝ๊ณ ํด๋ณด๋ฉด ๋ค ๋น ๋ฅด๊ฒ ๋๋ด๋ณผ ์ ์๊ฒ ์ด์. ์ข์๊ฑฐ ์์๊ฐ๋๋ค ! ์ ๋ ์ด ๋ฌธ์ ํ์์๋๋ฐ ์ด ์ข?๊ฒ ๊ฐ์ค์น๊ฐ ์์ ์๊ตฐ์
๐ ๋ฌธ์ ๋งํฌ
์ต๋จ ๊ฒฝ๋ก
โ๏ธ ์์๋ ์๊ฐ
1์๊ฐ(์๊ฐ ์ด๊ณผ ์ฐพ๋๋ฐ ๋ง์ด์..)
โจ ์๋ ์ฝ๋
์ฐ์ ์์ ๊ฐ๋ ์๋ ๋ค์ต์คํธ๋ผ ์๊ณ ๋ฆฌ์ฆ์ ์ ์ผ ๊ธฐ๋ณธ ๊ฐ์ ๋ฌธ์ ๊ธธ๋ ์ ์ ํด์ ํ์์ต๋๋ค!!
๋ค์ต์คํธ๋ผ ์๊ณ ๋ฆฌ์ฆ์ผ๋ก ์ฐ์ ๋ ธ๋์ ์ ์ ์ ์ฐ์ ์์ ํ์ ๋ฃ๊ณ "๊ฐ์ค์น๋ฅผ ๊ธฐ์ค์ผ๋ก" ๋นผ๋ ๋ถ๋ถ์ ๋๋ค!
์์ ๊ฐ์ด ๊ทธ๋ํ ์์ ๊ฐ ์๊ณ 1๋ถํฐ ์์ํ๋ค๊ณ ๊ฐ์ ์ ํ๋ฉด
์์ ๊ฐ์ด ๋ค์ต์คํธ๋ผ ๋ ์ฌ๋ฆฌ๊ณ ํ์๋๋ฐ ์ฒ์์ ํผ ์ฝ๋๋ ๊ณ์ํด์ ์๊ฐ์ด๊ณผ๊ฐ ๋์์ต๋๋ค!
์ด๊น์ง ์ฝ๊ณ ํ๋ฒ ์ด๋์ ํ๋ ธ๋์ง ์ฐพ์๋ณด๋ ๋ถ๋ถ๋ ์ฌ๋ฐ์ด์!
์ต์ข ์ฝ๋
์ ๋ถ๋ถ์์ ์ด์ํ๋ ๋ถ๋ถ์ ์ฐ์ ์์ ํ์ ๋ฃ์๋ ๋ ธ๋์ ๋ฒํธ๋ฅผ ์ฐ์ ์ผ๋ก ์ค์
๊ฐ์ค์น๋ฅผ ๊ธฐ์ค์ผ๋ก ๋จผ์ ๋น ์ง๋๊ฒ ์๋ ๋ ธ๋์ ๋ฒํธ๋ฅผ ๊ธฐ์ค์ผ๋ก ๋จผ์ ๋นผ์ค์
๋ต์ ๋ง๊ฒ ๋์ง๋ง ์๊ฐ์ด๊ณผ๊ฐ ๋์์ต๋๋ค.
๊ฐ๋จํ ์์ ๋ฅผ ๋ณด์ฌ๋๋ฆฌ๋ฉด
์์ ๊ฐ์ ๊ทธ๋ํ๊ฐ ์์ผ๋ฉด
์ฌ๋ฐ๋ฅด๊ฒ ๊ฐ์ค์น๋ก ์ฐ์ ์์ ํ๋ฅผ ๋ฃ์ด์ฃผ๋ฉด
1 -> 3 -> 2 -> 4 -> 2๋ก ๋์ง๋ง
์์ ๋ฐฉ์๋๋ก ํ๋ฆฐ ๋ฐฉ๋ฒ์ผ๋ก ์ฝ๋๋ฅผ ๋๋ ค๋ณด๋ฉด
1 -> 2 -> 4 -> 3 -> 2 -> 4๋ก ์์ฒญ๋๊ฒ ๊ฐ๋จํ ๊ทธ๋ํ์ฌ๋ ์ฐ์ฐ์ด ํ๋ฒ ๋์ด๋ ๊ฑธ ํ์ธํ ์ ์์ต๋๋ค.
์ต์ข ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
๋ค์ต์คํธ๋ผ ์๊ณ ๋ฆฌ์ฆ ๊ฐ๋ ์ ๋ค์ ๊ณต๋ถํ๋ฉด์ ์ฐ์ ์์ ํ์ ๋ํด์๋ ๋ค์ ๊ณต๋ถํ๋ ์ข์ ๊ณ๊ธฐ๊ฐ ๋ ๊ฒ ๊ฐ์ต๋๋ค!