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
- 오픽노잼공부방법
- 탑다운
- ㅂ
- 오픽노잼
- 피보나치수열
- opic
- 바텀업
- 오픽공부법
- 오픽점수잘받는방법
- 이진탐색 #나무 자르기
- 오픽가격
- 디피
- 다이나믹프로그래밍
- XML주석
- 영어말하기
- 안드로이드주석
- 영어회화
- 주석
- XML
- 안드로이드
- fibo
- 이진탐색
- 메모이제이션
- topdown
- stack 스택
- English
- dp
- 오픽
- dynamicProgramming
Archives
RUBY
[백준] 트리의 부모 찾기 본문
출처:: https://www.acmicpc.net/problem/11725
분류:: bfs
1. 문제 이해 및 해결과정
- 가장 가까운 노드 찾으면 된다 |
2. 풀이방법
1. [ python ] bfs
#트리의 부모 찾기
#https://www.acmicpc.net/problem/11725
import sys
from collections import deque
sys.stdin = open("input.txt","r")
n=int(input())
tree=[[] for _ in range(n+1)]
visited=[False for _ in range(n+1)]
res=[0]*(n+1)
for i in range(n-1):
a,b=map(int,input().split())
tree[a].append(b)
tree[b].append(a)
def bfs():
q=deque([1]) #1이 루트노드
while q:
parent=q.popleft()
# print(parent,q)
for x in tree[parent]:
if not visited[x]: #처음 방문한 것만 부모를 찾으면 됨
res[x]=parent
visited[x] = True
q.append(x) #다음 탐색할 노드 넣기
bfs()
print('\n'.join(map(str,res[2:])))
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 트리 (0) | 2020.10.10 |
---|---|
[백준] 링크와 스타트 (0) | 2020.10.09 |
[백준] 암호만들기 (0) | 2020.10.08 |
[백준] 소수&팰린드롬 (0) | 2020.10.07 |
[백준] 스티커 (0) | 2020.10.05 |
Comments