본문 바로가기
PS

[BOJ] Python 백준 해킹(10282)

by 1223v 2024. 12. 10.

https://www.acmicpc.net/problem/10282

 

기본적인 다익스트라 알고리즘 문제이다.

import sys
input = sys.stdin.readline
import heapq

def dijkstra(graph, start):

	time = [int(1e9)] * (N+1)
    time[start] = 0
    
    hq = []
    heapq.heappush(hq,(0,start))
    while hq:
    	c_time, c_com = heapq.heappush(hq)
        
        for s, a in graph[c_com]:
        	if c_time+s < time[a]:
            	time[a] = c_time+s
                heapq.heappush(hq,(c_time+s,a))
                
     count, endTime = 0,0
     for t in time:
     	if t < int(1e9):
        	count += 1
            if t > endTime:
            	endTime = t
                
 	return count, endTime
    
TC = int(input())

for _ in range(TC):
    N, D, C = map(int,input().split())

    graph = [[] for _ in range(N+1)]

    for _ in range(D):
        a, b, s = map(int,input().split())
        graph[b].append((s,a))

    count, endTime = dijkstra(graph, C)
    print(count, endTime)

 

 

회고,

기본에 충실한 다익스트라 문제로 다시금 개념을 잡는데 도움이 되어 좋았다. ㅎㅎ

댓글