백준 1717번: 집합의 표현 / C++
2023. 4. 3. 19:28ㆍ개인공부/코딩테스트
https://www.acmicpc.net/problem/1717
유니온 파인드 알고리즘을 이용해서 문제를 해결하였다. 음수의 경우 트리의 길이를 나타내어서 작은 트리로 합쳤다.
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
45
46
47
48
49
50
51
52
53
54
|
#include <iostream>
using namespace std;
int N, M;
int arr[1000001]{};
int Find(int num)
{
if (arr[num] < 0)
return num;
else{
int index =Find(arr[num]);
arr[num] = index;
return index;
}
}
void Union(int x, int y)
{
x = Find(x);
y = Find(y);
if (x == y)
return;
else if (arr[x] < arr[y]) {
arr[x] += arr[y];
arr[y] = x;
}
else {
arr[y] += arr[x];
arr[x] = y;
}
}
int main()
{
ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
cin >> N >> M;
for (int i = 0; i <= N; ++i)
arr[i] = -1;
for (int i = 0; i < M; ++i) {
int num1, num2, num3;
cin >> num1 >> num2 >> num3;
if (num1 == 0) {
Union(num2, num3);
}
else if (Find(num2) == Find(num3))
cout << "YES" << '\n';
else
cout << "NO" << '\n';
}
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 16135번 : OBB(Oriented bounding box) / C++ (0) | 2023.06.15 |
---|---|
백준 20040번: 사이클 게임 / C++ (0) | 2023.04.03 |
백준 1450: 냅색문제 / C++ (0) | 2023.04.03 |
백준 1806번 : 부분합 / C++ (0) | 2023.04.02 |
백준 2470번 : 두 용액 / C++ (0) | 2023.04.01 |