Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- server
- programmers
- greedy
- BASIC
- dfs
- Python
- php
- C
- DP
- Math
- Algospot
- C언어
- 생활코딩
- JavaScript
- BFS
- Cleancode
- 정수론
- 인프런
- 따배씨
- sorting
- 백준
- String
- udemy
- BOJ
- 종만북
- 따라하면서 배우는 C언어
- web
- graph
- Algorithm
- 따라하며 배우는 C언어
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 11725 / 트리의 부모 찾기 / Python 파이썬 본문
[BOJ] 11725 / 트리의 부모 찾기 / Python 파이썬
https://www.acmicpc.net/problem/11725
풀이
각 node의 root를 찾는 문제이다.
최상단의 root 노드가 항상 1로 시작하기 때문에,
모든 edge 를 기록한뒤 1부터 Tree 를 내려가며 root 를 기록하였다.
from collections import deque
N = int(input())
graph = [[] for _ in range(N+1)]
for _ in range(N-1):
f, t = map(int, input().split())
graph[f].append(t)
graph[t].append(f)
parenRoot = [0] * (N+1)
dq = deque()
dq.append(1)
while dq:
n = dq.popleft()
for m in graph[n]:
if not parenRoot[m]:
parenRoot[m] = n
dq.append(m)
for p in parenRoot[2:]:
print(p)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1967 / 트리의 지름 / Python 파이썬 (0) | 2021.06.16 |
---|---|
[BOJ] 1167 / 트리의 지름 / Python 파이썬 (0) | 2021.06.15 |
[BOJ] 1991 / 트리 순회 / Python 파이썬 (0) | 2021.06.14 |
[BOJ] 2146 / 다리 만들기 / Python 파이썬 (0) | 2021.06.13 |
[BOJ] 2178 / 미로 탐색 / Python 파이썬 (0) | 2021.06.13 |
Comments