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
- 카카오
- c++
- 서버개발캠프
- 삼성 #코테 #2020상반기 #c++
- 코테
- 1편
- 코딩테스트
- BaekJoon
- Algorithm
- BFS
- 백준
- 카카오인턴
- 중반부
- 알고리즘
- 투포인터
- 식단
- 보석쇼핑
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- LIS #Algorithm #요소추적
- 스마일게이트
- 유니온파인드
- Smilegate
- Union-find
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
백준 1717번. 집합의 표현(c++) / 유니온파인드 본문
반응형
유니온파인드를 사용하는 대표적 문제이다.
문제는....cin, cout이 진짜 느리다는 것을 실감한 문제^^
cin, cout을 쓰니까 맞왜틀이어서 질문 검색란을 찾아보니 똑같은 문제에 시달리시는 분들이 계셔서 ㅋㅋㅋ
ios::sync_with_stdio(0); cin.tie(0); 써서 해결했다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// 집합의 표현(1717번)
#include <iostream>
#include <vector>
using namespace std;
int n, m, a, b, c;
int connect[1000002] = {0, };
int find(int n){
if(connect[n]==n){
return n;
}
return connect[n] = find(connect[n]);
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0);
cin>>n>>m;
for(int i=0; i<=n; i++){
connect[i] = i;
}
for(int i=0; i<m; i++){
cin>>a>>b>>c;
int n = find(b);
int m = find(c);
if(a==0){
if(n!=m){
connect[n] = m;
}
}else{
if(n==m){
cout<<"YES"<<"\n";
}else{
cout<<"NO"<<"\n";
}
}
}
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 3190번. 뱀(c++) / 구현 (0) | 2021.03.16 |
---|---|
백준 2250번. 트리의 높이와 너비(c++) / Tree (0) | 2021.03.02 |
백준 14888번. 연산자 끼워넣기(c++) / String+순열 (0) | 2021.02.17 |
백준 2293번. 동전 1(c++) / DP (0) | 2021.02.14 |
백준 14501번. 퇴사(c++) / 그리디 (0) | 2021.02.10 |
Comments