Game Develop

[Algorithm]Baekjoon 1717번 :: 집합의 표현 (유니온파인드 기본문제) 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 1717번 :: 집합의 표현 (유니온파인드 기본문제)

MaxLevel 2023. 9. 13. 07:04

Union-Find 알고리즘의 기본예제다.

좀 더 난이도있는 그래프문제를 해결하려고 할 수록, 필수로 알아두는게 좋다고 한다.

 

 

 

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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include <iostream>
 
 
using namespace std;
#pragma warning(disable:4996)
 
int parent[1000001];
 
int getParent(int x)
{
    if (parent[x] == x) 
    {
        return x;
    }
        
    return parent[x] = getParent(parent[x]);
}
 
 
void UnionParent(int a, int b)
{
    a = getParent(a);
    b = getParent(b);
 
    if (a > b) parent[a] = b;
    else parent[b] = a;
}
 
void Find(int a, int b)
{
    a = getParent(a);
    b = getParent(b);
 
    if (a == b)
    {
        cout << "YES\n";
    }
    else
    {
        cout << "NO\n";
    }
 
}
 
int main(void)
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    int n = 0;
    int m = 0;
    int s = 0;
    int a = 0;
    int b = 0;
 
    cin >> n >> m;
    
    for (int i = 0; i <= n; i++)
    {
        parent[i] = i; // 각 노드의 부모정보초기화
    }
 
    for (int i = 0; i < m; i++)
    {
        cin >> s >> a >> b; 
 
        if (s == 0)
        {
            UnionParent(a, b);
        }
        else
        {
            Find(a, b);
        }
    }
 
    return 0;
}
 
cs