-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathminimize-maximum-component-cost.cpp
More file actions
59 lines (54 loc) · 1.35 KB
/
minimize-maximum-component-cost.cpp
File metadata and controls
59 lines (54 loc) · 1.35 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
// Time: O(n + eloge)
// Space: O(n)
// backward simulation, union find, sort
class Solution {
public:
int minCost(int n, vector<vector<int>>& edges, int k) {
sort(begin(edges), end(edges), [](const auto& a, const auto& b) {
return a[2] < b[2];
});
int cnt = 0;
UnionFind uf(n);
for (const auto& e : edges) {
if (!uf.union_set(e[0], e[1])) {
continue;
}
if (++cnt == n - k) {
return e[2];
}
}
return 0;
}
private:
class UnionFind {
public:
UnionFind(int n)
: set_(n)
, rank_(n) {
iota(set_.begin(), set_.end(), 0);
}
int find_set(int x) {
if (set_[x] != x) {
set_[x] = find_set(set_[x]); // Path compression.
}
return set_[x];
}
bool union_set(int x, int y) {
x = find_set(x), y = find_set(y);
if (x == y) {
return false;
}
if (rank_[x] > rank_[y]) {
swap(x, y);
}
set_[x] = y; // Union by rank.
if (rank_[x] == rank_[y]) {
++rank_[y];
}
return true;
}
private:
vector<int> set_;
vector<int> rank_;
};
};