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
- AlexNet
- DP
- 딥러닝
- edge detection
- dynamic programming
- MinHeap
- classification
- canny edge detection
- machine learning
- sklearn
- image processing
- Python
- 머신러닝
- exists
- clustering
- Mask Processing
- overfitting
- 그래프 이론
- object detection
- dfs
- SIFT
- BFS
- TD
- Reinforcement Learning
- opencv
- dropout
- MySQL
- C++
- 백준
- 강화학습
Archives
- Today
- Total
목록11725 (1)
JINWOOJUNG
[ 그래프 이론-11725 ] 트리의 부모 찾기(Python)
접근법 단순히 현재 노드의 부모를 찾는거기 때문에, dfs(),bfs()없이 단순하게 해결할 수 있을 것 같아서 아래와 같이 접근했다. import sys N = int(input()) visited = [0] * (N+1) visited[1] = 1 for _ in range(N-1): x, y = map(int,sys.stdin.readline().split(" ")) if visited[x] != 0: visited[y] = x else: visited[x] = y for i in range(2,N+1): print(visited[i]) 입력받는 두 수 중 하나는 무조건 이전에 언급된 노드여야 루트가 1인 트리를 형성할 수 있다. 따라서 입력받음과 동시에 두 수 중 방문되었던 노드가 있다면 다른 노..
백준
2024. 1. 4. 13:02