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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
Archives
- Today
- Total
기록
백준_20040_사이클 게임 본문
문제
https://www.acmicpc.net/problem/20040
풀이
분리집합
이미 같은 집합에 있는 원소(부모가 같은 원소)들이 언급되었다면, 사이클이 생긴 것이다.
코드
def find(n) :
if parent[n]==n : return n
parent[n] = find(parent[n])
return parent[n]
def union(x, y) :
x = find(x)
y = find(y)
if x<=y : parent[x] = y
else : parent[y] = x
def main(n, m, arr) :
for i, (x, y) in enumerate(arr) :
if find(x)==find(y) : return i+1
union(x, y)
return 0
import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
n, m = map(int, input().strip().split())
parent = [i for i in range(n)]
arr = [map(int, input().strip().split()) for i in range(m)]
print(main(n, m, arr))
'코딩테스트 > python' 카테고리의 다른 글
백준_1022_소용돌이 예쁘게 출력하기 (0) | 2022.04.19 |
---|---|
백준_2208_보석 줍기 (0) | 2022.04.07 |
백준_12100_2048 (Easy) (0) | 2022.04.02 |
백준_가장 긴 증가하는 수열 세트 (1) (0) | 2022.03.22 |
백준_1937_욕심쟁이 판다 (0) | 2022.03.22 |
Comments