-
알고리즘: 백준 10282번 해킹 (feat. python)알고리즘/백준(BaekJoon) 2021. 1. 15. 14:18
10282번: 해킹
최흉최악의 해커 yum3이 네트워크 시설의 한 컴퓨터를 해킹했다! 이제 서로에 의존하는 컴퓨터들은 점차 하나둘 전염되기 시작한다. 어떤 컴퓨터 a가 다른 컴퓨터 b에 의존한다면, b가 감염되면
www.acmicpc.net
import sys import heapq INF = sys.maxsize read = sys.stdin.readline case = int(read()) def sol(): n, d, c = map(int, read().split()) depen = {i:[] for i in range(1, n+1)} for _ in range(d): a, b, s = map(int, read().split()) depen[b].append([s, a]) visit = [] hq = [] time = [0] + [INF for _ in range(n)] time[c] = 0 heapq.heappush(hq, [0, c]) while hq: cs, ccom = heapq.heappop(hq) if ccom not in visit: visit.append(ccom) for ns, ncom in depen[ccom]: next = ns + cs if next < time[ncom]: time[ncom] = next heapq.heappush(hq, [next, ncom]) else: max_time = 0 for t in time: if t != INF and t > max_time: max_time = t return len(visit), max_time def pretty(answer): for a in answer: print(a, end=' ') print() for i in range(case): pretty(sol())
반응형'알고리즘 > 백준(BaekJoon)' 카테고리의 다른 글
알고리즘: 백준 15686번 치킨 배달 (feat. python) (0) 2021.01.17 알고리즘: 백준 2211번 네트워크 복구 (feat.python) (0) 2021.01.15 알고리즘: 백준 11779번 최소비용 구하기2 (feat.python) (0) 2021.01.15 알고리즘: 백준 2665번 미로만들기 (feat.python) (0) 2021.01.13 알고리즘: 백준 4485번 녹색 옷 입은 애가 젤다지? (feat. python) (0) 2021.01.12