250x250
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
- sklearn
- 머신러닝
- 백준
- SIFT
- canny edge detection
- 자료구조
- C++
- 강화학습
- 그래프 이론
- Mask Processing
- edge detection
- MySQL
- Python
- DP
- BFS
- exists
- dynamic programming
- AlexNet
- image processing
- Reinforcement Learning
- classification
- TD
- MinHeap
- 딥러닝
- opencv
- clustering
- 인공지능
- IN
- machine learning
- dfs
Archives
- Today
- Total
JINWOOJUNG
[ 그래프 이론-2668 ] 숫자고르기(Python) 본문
728x90
반응형
접근법
어려웠다..
단순히 dfs 측면으로 접근하고자 했는데 " 1->3->2->3" 과 같이 일치하지 않는 집합을 거름과 동시에 중간에 일치하는 집합을 찾아내는 아이디어를 도출하는게 매우 힘들었다...
정답
import sys
sys.setrecursionlimit(10**6)
N = int(input())
graph = [[] for _ in range(N+1)]
for i in range(1,N+1):
graph[int(input())].append(i)
visited = [0]*(N+1)
result = set()
def dfs(i, arr):
for j in graph[i]:
if visited[j]:
while arr:
tmp = arr.pop()
result.add(tmp)
if j == tmp:
break
return
visited[j] = 1
dfs(j, arr+[j])
visited[j] = 0
for i in range(1,N+1):
dfs(i,[])
ans = sorted(list(result))
print(len(ans),*ans,sep='\n')
솔직히 아직 완벽하게 이해가 안되서...나중에 재업로드 하겠다ㅠㅜ
728x90
반응형
'백준' 카테고리의 다른 글
[ 그래프 이론-11724 ] 연결 요소의 개수(Python) (1) | 2024.01.02 |
---|---|
[ 그래프 이론-2468 ] 안전 영역(Python) (1) | 2024.01.02 |
[ 자료구조-1253 ] 좋다(Python) (0) | 2023.12.29 |
[ 자료구조-1715 ] 카드 정렬하기(Python) (0) | 2023.12.28 |
[ 그래프 이론-10026 ] 적록색약(Python) (2) | 2023.12.28 |