https://www.acmicpc.net/problem/21276
21276번: 계보 복원가 호석
석호촌에는 N 명의 사람이 살고 있다. 굉장히 활발한 성격인 석호촌 사람들은 옆 집 상도 아버님, 뒷집 하은 할머님 , 강 건너 유리 어머님 등 모두가 한 가족처럼 살아가고 있다. 그러던 어느 날
www.acmicpc.net
풀이 과정
- 이름과 연결된 자식들의 정보를 저장해 둔다.
- 자식-(부모 or 조상)이 연결되어 있다면, 자식의 진입차수를 1 증가시켜 준다.
- 단, 여기서 부모가 조상일수도 있음.
- 초기 큐에는 각 가문의 시조들을 저장해 둔다.
- 진입차수가 0인 이름들이 각 가문의 시조들이다.
- 큐에서 한명씩 빼주면서 연결된 자식들의 진입차수를 1씩 감소시킨다.
- 진입차수가 0이 된다면, 해당 자식은 직전에 큐에서 빼준 인원의 자식이기 때문에 따로 저장해 두고, 해당 자식은 큐에 삽입하여 준다.
- 출력 형식에 맞추어서 출력시켜주면 된다.
소스 코드
import sys
from collections import deque
input = lambda: sys.stdin.readline().rstrip()
N = int(input())
people = set(input().split())
child = {person:[] for person in people}
edge = {person:[] for person in people}
indegree = {person:0 for person in people}
father = []
M = int(input())
for _ in range(M):
a, b = input().split()
indegree[a] += 1
edge[b].append(a)
queue = deque()
for person in people:
if indegree[person] == 0:
queue.append(person)
father.append(person)
while queue:
node = queue.popleft()
for next_node in edge[node]:
indegree[next_node] -= 1
if indegree[next_node] == 0:
queue.append(next_node)
child[node].append(next_node)
print(len(father))
print(*sorted(father))
for name in sorted(list(people)):
print_str = name + " " + str(len(child[name]))
if len(child[name]) != 0:
print_str += (" " + " ".join(sorted(child[name])))
print(print_str)
'알고리즘[Python] > 백준 알고리즘' 카테고리의 다른 글
[ 17951 ] [ 이분 탐색 ] 흩날리는 시험지 속에서 내 평점이 느껴진거야 (0) | 2021.12.30 |
---|---|
[ 23843 ] [ Greedy ] 콘센트 (0) | 2021.12.29 |
[ 1766 ] [ 위상 정렬 ] 문제집 (0) | 2021.12.27 |
[ 2533 ] [ Tree + DP ] 사회망 서비스(SNS) (0) | 2021.12.24 |
[ 20955 ] [ Union-Find ] 민서의 응급 수술 (0) | 2021.12.23 |