-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.cpp
50 lines (47 loc) · 1.47 KB
/
Solution.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
class Solution {
public:
vector<int> p;
vector<int> size;
vector<int> pondSizes(vector<vector<int>>& land) {
int m = land.size(), n = land[0].size();
for (int i = 0; i < m * n; ++i)
{
p.push_back(i);
size.push_back(1);
}
for (int i = 0; i < m; ++i)
{
for (int j = 0; j < n; ++j)
{
if (land[i][j] != 0) continue;
int idx = i * n + j;
if (i < m - 1 && land[i + 1][j] == 0) unite(idx, (i + 1) * n + j);
if (j < n - 1 && land[i][j + 1] == 0) unite(idx, i * n + j + 1);
if (i < m - 1 && j < n - 1 && land[i + 1][j + 1] == 0) unite(idx, (i + 1) * n + j + 1);
if (i < m - 1 && j > 0 && land[i + 1][j - 1] == 0) unite(idx, (i + 1) * n + j - 1);
}
}
unordered_set<int> s;
vector<int> res;
for (int i = 0; i < m * n; ++i) {
if (land[i / n][i % n] != 0) continue;
int root = find(i);
if (s.find(root) == s.end()) {
s.insert(root);
res.push_back(size[root]);
}
}
sort(res.begin(), res.end());
return res;
}
int find(int x) {
if (p[x] != x) p[x] = find(p[x]);
return p[x];
}
void unite(int a, int b) {
int pa = find(a), pb = find(b);
if (pa == pb) return;
size[pb] += size[pa];
p[pa] = pb;
}
};