반응형
https://www.acmicpc.net/problem/2252
import sys
import collections
input = sys.stdin.readline
n, k = map(int, input().split())
deg = [0 for _ in range(n)]
graph = collections.defaultdict(list)
for _ in range(k):
a, b = map(int, input().split())
graph[a].append(b)
deg[b-1] += 1
q = collections.deque()
for i in range(n):
if deg[i] == 0:
q.append(i+1)
while q:
cur = q.popleft()
print(cur, end=' ')
for next in graph[cur]:
deg[next-1] -= 1
if deg[next-1] == 0:
q.append(next)
위상 정렬의 기본 유형이다. 골드 2인 건 살짝 의문이다.
댓글