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
- algorithm
- const
- 언리얼엔진5
- 2294
- 오블완
- baekjoon
- 팰린드롬 만들기
- 1563
- UnrealEngine4
- IFileDialog
- Programmers
- DeferredRendering
- 백준
- NRVO
- softeer
- UE5
- C++
- Unreal Engine5
- 줄 세우기
- DirectX11
- RootMotion
- RVO
- GeeksForGeeks
- C
- directx
- UnrealEngine5
- 프로그래머스
- Frustum
- 티스토리챌린지
- winapi
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1043번 :: 거짓말 본문
https://www.acmicpc.net/problem/1043
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
vector<vector<int>> partyList(51);
int parents[51] = { 0 };
vector<int> thList;
int Find(int n)
{
if (parents[n] == n)
return n;
return parents[n] = Find(parents[n]);
}
void Union(int a, int b)
{
a = Find(a);
b = Find(b);
if (a < b) parents[b] = a;
else parents[a] = b;
}
bool CheckSameGroup(int a, int b)
{
return Find(a) == Find(b);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, m;
int th = 0;
int thn = 0;
int count = 0;
int input = 0;
cin >> n >> m;
cin >> th;
if (th != 0)
{
for (int i = 0; i < th; i++)
{
cin >> thn;
thList.push_back(thn);
}
}
for (int i = 1; i <= n; i++)
{
parents[i] = i;
}
for (int i = 0; i < m; i++)
{
cin >> count;
int prev = 0;
for (int j = 0; j < count; j++)
{
cin >> input;
partyList[i].push_back(input);
if (count == 1) break;
if (j >= 1)
{
if (!CheckSameGroup(prev, input))
{
Union(prev, input);
}
}
prev = input;
}
}
int resultCount = m;
for (int i = 0; i < m; i++)
{
bool check = false;
for (int j = 0; j < partyList[i].size(); j++)
{
int stand = partyList[i][j];
for (int k = 0; k < thList.size(); k++)
{
if (CheckSameGroup(stand,thList[k]))
{
check = true;
break;
}
}
if (check) break;
}
if (check) resultCount--;
}
cout << resultCount;
}
|
cs |
주어진 조건에 맞춰 노드를 집합에 포함시킨 후, 포함이 안 된 노드만으로 구성된 파티리스트의 갯수를 리턴하면 된다.
집합에 포함시키는 알고리즘 중 자주 쓰이는 Union-Find를 활용했다.
모두 집합에 포함시킨 후, 다시 파티리스트의 노드들을 검사하며 하나라도 집합에 포함되어있을 경우 바로 반복문을 탈출한다.
검사하는 과정에서도 Find를 한번 더 호출해주는게 안전하다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1967번 :: 트리의 지름 (0) | 2022.12.14 |
---|---|
[Algorithm]Baekjoon 1504번 :: 특정한 최단 경로 (0) | 2022.12.13 |
[Algorithm]Baekjoon 17070번 :: 파이프 옮기기 1 (0) | 2022.12.10 |
[Algorithm]Baekjoon 15686번 :: 치킨 배달 (0) | 2022.12.09 |
[Algorithm]Baekjoon 12865번 :: 평범한 배낭 (0) | 2022.12.08 |