-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathproperties-graph.cpp
117 lines (110 loc) · 3.29 KB
/
properties-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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Time: O(n^2 * m)
// Space: O(n * m)
// graph, flood fill, bfs
class Solution {
public:
int numberOfComponents(vector<vector<int>>& properties, int k) {
vector<vector<int>> adj(size(properties));
vector<unordered_set<int>> p_set(size(properties));
for (int i = 0; i < size(properties); ++i) {
p_set[i] = unordered_set<int>(cbegin(properties[i]), cend(properties[i]));
}
for (int i = 0; i < size(p_set); ++i) {
for (int j = i + 1; j < size(p_set); ++j) {
int cnt = 0;
for (const auto& x : p_set[i]) {
cnt += p_set[j].count(x);
}
if (cnt >= k) {
adj[i].emplace_back(j);
adj[j].emplace_back(i);
}
}
}
vector<bool> lookup(size(properties));
const auto& bfs = [&](int u) {
vector<int> q = {u};
while (!empty(q)) {
vector<int> new_q;
for (const auto& u : q) {
for (const auto& v : adj[u]) {
if (lookup[v]) {
continue;
}
lookup[v] = true;
new_q.emplace_back(v);
}
}
q = move(new_q);
}
};
int result = 0;
for (int i = 0; i < size(properties); ++i) {
if (lookup[i]) {
continue;
}
bfs(i);
++result;
}
return result;
}
};
// Time: O(n^2 * m)
// Space: O(n * m)
// graph, union find
class Solution2 {
public:
int numberOfComponents(vector<vector<int>>& properties, int k) {
vector<vector<int>> adj(size(properties));
vector<unordered_set<int>> p_set(size(properties));
for (int i = 0; i < size(properties); ++i) {
p_set[i] = unordered_set<int>(cbegin(properties[i]), cend(properties[i]));
}
int result = size(properties);
UnionFind uf(size(properties));
for (int i = 0; i < size(p_set); ++i) {
for (int j = i + 1; j < size(p_set); ++j) {
int cnt = 0;
for (const auto& x : p_set[i]) {
cnt += p_set[j].count(x);
}
if (cnt >= k) {
result -= uf.union_set(i, j);
}
}
}
return result;
}
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_;
};
};