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
- RootMotion
- UnrealEngine5
- UE5
- 오블완
- 티스토리챌린지
- 프로그래머스
- algorithm
- RVO
- const
- 백준
- baekjoon
- DeferredRendering
- Unreal Engine5
- GeeksForGeeks
- C
- Programmers
- 1563
- Frustum
- UnrealEngine4
- winapi
- 줄 세우기
- DirectX11
- softeer
- 팰린드롬 만들기
- 2294
- C++
- NRVO
- IFileDialog
- directx
- 언리얼엔진5
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1717번 :: 집합의 표현 (유니온파인드 기본문제) 본문
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 |
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2156번 : 포도주 시식 (0) | 2023.09.13 |
---|---|
[Algorithm]Baekjoon 11727번 : 2xn 타일링 2 (0) | 2023.09.13 |
[Algorithm] Baekjoon 1652번 : 누울 자리를 찾아라 (0) | 2023.09.10 |
[Algorithm] Baekjoon 1747번 : 소수&팰린드롬 (0) | 2023.09.09 |
[Algorithm] Baekjoon 17298번 : 오큰수 (0) | 2023.09.09 |