-
Notifications
You must be signed in to change notification settings - Fork 3
/
952.cpp
57 lines (55 loc) · 1.42 KB
/
952.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
class DisjointSet {
private:
vector<int> parent;
vector<int> rank;
public:
DisjointSet(int n) {
parent.resize(n, 0);
rank.resize(n, 0);
for (int i = 0; i < n; ++i) parent[i] = i;
}
int find(int x) {
if (x != parent[x]) {
parent[x] = find(parent[x]);
}
return parent[x];
}
void join(int x, int y) {
int pX = find(x);
int pY = find(y);
if (pX == pY) return;
if (rank[pX] > rank[pY]) {
parent[pY] = pX;
}
else if (rank[pX] < rank[pY]) {
parent[pX] = pY;
}
else {
parent[pY] = pX;
rank[pX]++;
}
}
};
class Solution {
public:
int largestComponentSize(vector<int>& nums) {
int maxVal = *max_element(nums.begin(), nums.end());
DisjointSet* disjointSet = new DisjointSet(maxVal + 1);
for (const auto& num : nums) {
for (int i = 2; i <= sqrt(num); ++i) {
if (num % i == 0) {
disjointSet->join(i, num);
disjointSet->join(i, num / i);
}
}
}
unordered_map<int, int> group2cnt;
int maxCnt = 0;
for (auto& num : nums) {
int group = disjointSet->find(num);
group2cnt[group]++;
maxCnt = max(maxCnt, group2cnt[group]);
}
return maxCnt;
}
};