-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.cpp
44 lines (42 loc) · 1.24 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
class Solution {
public:
vector<int> p;
int minMalwareSpread(vector<vector<int>>& graph, vector<int>& initial) {
int n = graph.size();
p.resize(n);
for (int i = 0; i < n; ++i) p[i] = i;
vector<int> size(n, 1);
for (int i = 0; i < n; ++i) {
for (int j = i + 1; j < n; ++j) {
if (graph[i][j]) {
int pa = find(i), pb = find(j);
if (pa == pb) continue;
p[pa] = pb;
size[pb] += size[pa];
}
}
}
int mi = 400;
int res = initial[0];
sort(initial.begin(), initial.end());
for (int i = 0; i < initial.size(); ++i) {
int t = 0;
unordered_set<int> s;
for (int j = 0; j < initial.size(); ++j) {
if (i == j) continue;
if (s.count(find(initial[j]))) continue;
s.insert(find(initial[j]));
t += size[find(initial[j])];
}
if (mi > t) {
mi = t;
res = initial[i];
}
}
return res;
}
int find(int x) {
if (p[x] != x) p[x] = find(p[x]);
return p[x];
}
};