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
- 오픽
- dp
- 피보나치수열
- 오픽노잼공부방법
- 다이나믹프로그래밍
- 영어회화
- English
- 이진탐색
- 오픽점수잘받는방법
- 안드로이드주석
- 바텀업
- 이진탐색 #나무 자르기
- stack 스택
- 오픽노잼
- XML
- opic
- topdown
- dynamicProgramming
- 메모이제이션
- 영어말하기
- XML주석
- 탑다운
- 안드로이드
- 오픽공부법
- 디피
- fibo
- 주석
- ㅂ
- 오픽가격
Archives
RUBY
[백준] 집합의 표현 본문
출처:: www.acmicpc.net/problem/1717
분류:: 유니온파인드
1. 문제 이해 및 해결과정
2. 풀이방법
#집합의 표현
#https://www.acmicpc.net/problem/1717
import sys
sys.stdin = open("input.txt","r")
n,m=map(int,input().split()) #n+1개의 팀, 연산횟수
parent=[]
def find_parent(parent,x):
if parent[x]!=x:
parent[x]=find_parent(parent,parent[x])
return parent[x]
def union_parent(parent,a,b):
a=find_parent(parent,a)
b=find_parent(parent,b)
if a<b:
parent[b]=a
else:
parent[a]=b
for i in range(n+1):
parent.append(i)
for _ in range(m):
comm,a,b=map(int,input().split())
if comm==0: #팀합치기
union_parent(parent,a,b)
elif comm==1: #같은팀 여부 확인
if find_parent(parent,a)==find_parent(parent,b): #부모가 같을 떄, 같은팀
print("YES")
else:
print("NO")
3. 오답원인
4. 알게된 점
Comments