-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathcount-connected-components-in-lcm-graph.cpp
90 lines (84 loc) · 2.12 KB
/
count-connected-components-in-lcm-graph.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
// Time: O(n + tlogt), t = threshold
// Space: O(t)
// union find, number theory
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_;
};
class Solution {
public:
int countComponents(vector<int>& nums, int threshold) {
UnionFind uf(threshold);
vector<int> lookup(threshold, -1);
int result = size(nums);
for (const auto& x : nums) {
if (x - 1 >= threshold) {
continue;
}
for (int i = x; i <= threshold; i += x) {
if (lookup[i - 1] == -1) {
lookup[i - 1] = x - 1;
continue;
}
if (uf.union_set(lookup[i - 1], x - 1)) {
--result;
}
if (i == x) {
break;
}
}
}
return result;
}
};
// Time: O(n + tlogt), t = threshold
// Space: O(t)
// union find, number theory
class Solution2 {
public:
int countComponents(vector<int>& nums, int threshold) {
UnionFind uf(threshold);
for (const auto& x : nums) {
if (x - 1 >= threshold) {
continue;
}
for (int i = x + x; i <= threshold; i += x) {
uf.union_set(i - 1, x - 1);
}
}
int result = 0;
for (const auto& x : nums) {
if (x - 1 >= threshold || uf.find_set(x - 1) == x - 1) {
++result;
}
}
return result;
}
};