-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disjoint_Set_Union.cpp
94 lines (80 loc) · 1.9 KB
/
Disjoint_Set_Union.cpp
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
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ff first
#define ss second
#define sz(x) (int) x.size()
#define endl '\n'
#define pb push_back
#define all(v) v.begin(), v.end()
#define YES printf("YES\n")
#define Yes printf("Yes\n")
#define NO printf("NO\n")
#define No printf("No\n")
#define mem(a) memset(a , 0 ,sizeof a)
#define memn(a) memset(a , -1 ,sizeof a)
const int lim = 1048576;
const int M = 1e9 + 7;
const int Inf = (int)2e9 + 5;
const ll Lnf = (ll)2e18 + 5;
const int N = 5e5 + 5;
const int NN = 1e6 + 5;
#define error(args...) {vector<string>_v=split(#args,',');err(_v.begin(),args);cout<<endl;}
vector<string> split(const string &s, char c) {vector<string>v; stringstream ss(s); string x; while (getline(ss, x, c))v.emplace_back(x); return move(v);} void err(vector<string>::iterator it) {}
template<typename T, typename... Args>void err(vector<string>::iterator it, T a, Args...args) {cout << it->substr((*it)[0] == ' ', it->length()) << " = " << a << " "; err(++it, args...);}
int par[N];
int size[N];
void make(int u)
{
par[u] = u;
size[u] = 1;
return;
}
int find(int u)
{
if (par[u] == u)return u;
return par[u] = find(par[u]);
}
void Union(int a, int b)
{ a = find(a);
b = find(b);
if (a != b)
{
if (size[a] < size[b])swap(a, b);
par[b] = a;
size[a] += size[b];
}
return;
}
int solve()
{
int n, k;
cin >> n >> k;
for (int i = 1; i <= n; ++i)
{
make(i);
}
while (k--)
{
int u, v;
cin >> u >> v;
Union(u, v);
}
int connect_com = 0;
for (int i = 1; i <= n; ++i)
{
if (par[i] == i)connect_com++;
}
cout << connect_com << endl;
return 0;
}
int main() {
//ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int test = 1, tc = 0;
//cin >> test;
while (test--) {
//printf("Case %d: ", ++tc);
solve();
}
return 0;
}