-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContest_7.cpp
More file actions
95 lines (77 loc) · 1.9 KB
/
Copy pathContest_7.cpp
File metadata and controls
95 lines (77 loc) · 1.9 KB
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
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class DSU {
private:
vector<int> parent, rank;
public:
DSU(int n) {
parent.resize(n);
rank.resize(n, 0);
for (int i = 0; i < n; i++) {
parent[i] = i;
}
}
int find(int x) {
if (parent[x] != x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
bool unite(int x, int y) {
int rootX = find(x);
int rootY = find(y);
if (rootX == rootY) {
return false; // Already connected
}
if (rank[rootX] < rank[rootY]) {
parent[rootX] = rootY;
} else if (rank[rootX] > rank[rootY]) {
parent[rootY] = rootX;
} else {
parent[rootY] = rootX;
rank[rootX]++;
}
return true;
}
int countComponents() {
int components = 0;
for (int i = 0; i < parent.size(); i++) {
if (find(i) == i) {
components++;
}
}
return components;
}
};
int minOperationsToConnect(int N, vector<pair<int, int>>& routes) {
DSU dsu(N);
int extraEdges = 0;
for (const auto& route : routes) {
int u = route.first;
int v = route.second;
if (!dsu.unite(u, v)) {
extraEdges++;
}
}
int components = dsu.countComponents();
int neededEdges = components - 1;
if (extraEdges >= neededEdges) {
return neededEdges;
}
return -1; // Not possible
}
int main() {
int N, M;
cin >> N >> M;
vector<pair<int, int>> routes(M);
for (int i = 0; i < M; i++) {
int u, v;
cin >> u >> v;
routes[i] = {u, v};
}
int result = minOperationsToConnect(N, routes);
cout << result << endl;
return 0;
}