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
- 따배씨
- String
- Cleancode
- php
- 종만북
- JavaScript
- 따라하면서 배우는 C언어
- greedy
- graph
- C언어
- BOJ
- 인프런
- dfs
- BASIC
- sorting
- 생활코딩
- BFS
- Algorithm
- C
- 정수론
- DP
- programmers
- udemy
- 따라하며 배우는 C언어
- 백준
- web
- Algospot
- Math
- server
- Python
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 9466 / 텀 프로젝트 / Python 파이썬 본문
[BOJ] 9466 / 텀 프로젝트 / Python 파이썬
https://www.acmicpc.net/problem/9466
풀이
순환되는 graph 를 찾는 문제이다.
키 포인트는 마지막 node 와 첫 node 가 이어져서 Loop 를 이룬다는 것이다.
순환되는 graph 를 찾는 방법은 다음과 같다
- 방문 node 를 check 하며 순회
- 거쳐간 node 를 재방문 하였을때 순회 종료
- 마지막 node 와 이어진 node 의 index 부터 grpah 를 구성
loop = "순회한 node 를 저장"
t = "마지막 node 가 가르키는 node"
# 순회한 graph 에서 Loop 만들기
loop = loop[loop.index(t):]
T = int(input())
for _ in range(T):
N = int(input())
picks = [0] + list(map(int, input().split()))
visited = [0] * (N+1)
res = 0
for i in range(1, N+1):
if visited[i]:
continue
f = i
loop = [f]
visited[f] = 1
while True:
t = picks[f]
if visited[t]:
break
f = t
loop.append(f)
visited[f] = 1
if loop and t in loop:
res += len(loop[loop.index(t):])
print(N - res)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 4963 / 섬의 개수 / Python 파이썬 (0) | 2021.06.10 |
---|---|
[BOJ] 2667 / 단지번호붙이기 / Python 파이썬 (0) | 2021.06.09 |
[BOJ] 2331 / 반복수열 / Python 파이썬 (0) | 2021.06.07 |
[BOJ] 10451 / 순열 사이클 / Python 파이썬 (0) | 2021.06.07 |
[BOJ] 1707 / 이분 그래프 / Python 파이썬 (0) | 2021.06.07 |
Comments