300x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- google coding competition
- 알고리즘
- kick start
- 동적 프로그래밍
- OS
- nlp
- 그래프
- AI
- 동적프로그래밍
- 코딩 테스트
- 운영체제
- DFS
- 백준
- 코딩테스트
- dp
- 네트워크
- 코딩
- 브루트포스
- 리눅스
- 프로그래머스
- linux
- BFS
- 킥스타트
- 구글 킥스타트
- 순열
- 파이썬
- PYTHON
- 프로그래밍
- CSS
Archives
- Today
- Total
오뚝이개발자
[백준 20040] 사이클 게임 본문
728x90
300x250
문제
나의 풀이
전형적인 유니온 파인드(union find) 문제이다. 유니온 파인드 알고리즘은 그래프가 사이클을 갖는지 여부를 판별하는 알고리즘이다.
약간 헷갈렸던 부분이 사이클을 판별하기 위해선 연결하려는 두 노드 x,y가 같은 부모를 갖는지를 먼저 확인하고 unionParent 함수를 call해야 된다는 점이다. 처음에 unionParent를 먼저 실행하고 isSameParent를 실행했다가 틀렸다.
파이썬의 경우 재귀 함수의 최대 깊이로 인해 처음 제출하면 Runtime error가 나는데 setrecursionlimit을 설정해주면 된다.
코드
# https://www.acmicpc.net/problem/20040
import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
def getParent(x):
if parent[x] == x:
return x
else:
parent[x] = getParent(parent[x])
return parent[x]
def unionParent(x,y):
x_parent = getParent(x)
y_parent = getParent(y)
if x_parent < y_parent:
parent[x_parent] = y_parent
else:
parent[y_parent] = x_parent
def isSameParent(x,y):
if getParent(x) == getParent(y):
return True
else:
return False
node, turn = map(int, input().split())
edge = []
for _ in range(turn):
edge.append((tuple(map(int, input().split()))))
parent = [i for i in range(node)]
cnt = 0
done = False
for x,y in edge:
cnt += 1
if isSameParent(x,y):
print(cnt)
done = True
break
unionParent(x,y)
if not done:
print(0)
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준 2239] 스토쿠 - 파이썬(Python) (2) | 2022.09.24 |
---|---|
[백준 2473] 세 용액 - 파이썬(Python) (0) | 2022.09.09 |
[백준 12851] 숨바꼭질 2 (0) | 2022.04.16 |
[백준 2638] 치즈 (0) | 2022.04.16 |
[백준 11660] 구간 합 구하기 5 (0) | 2022.04.14 |
Comments