# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
520868 |
2022-01-31T10:22:36 Z |
cig32 |
Mergers (JOI19_mergers) |
C++17 |
|
3000 ms |
31140 KB |
#include "bits/stdc++.h"
#define int long long
using namespace std;
const int MAXN = 5e5 + 10;
vector<int> adj[MAXN];
vector<int> adj2[MAXN];
int s[MAXN];
int dsu[MAXN];
int set_of(int u) {
if(dsu[u] == u) return u;
return dsu[u] = set_of(dsu[u]);
}
void union_(int u, int v) {
dsu[set_of(u)] = set_of(v);
}
int dfs(int node, int prev, int q, int stat) {
//stat: who the ancestors contain color q
int cnt = (s[node] == q);
stat |= (s[node] == q);
vector<int> v;
for(int x: adj[node]) {
if(x != prev) {
int d = dfs(x, node, q, stat);
cnt += d;
if(d > 0 && stat) {
v.push_back(x);
}
}
}
for(int x: v) {
if(set_of(node) != set_of(x)) {
union_(node, x);
}
}
//ret: how many color q in subtree
return cnt;
}
int32_t main() {
int n,k;cin >> n >> k;
for(int i=1;i<n;i++) {
int a,b;cin >> a >> b;
adj[a].push_back(b);
adj[b].push_back(a);
}
for(int i=1; i<=n; i++) cin >> s[i];
for(int i=0; i<=n; i++) dsu[i] = i;
for(int i=1; i<=k; i++) {
for(int j=1; j<=n; j++) {
if(s[j] == i) {
dfs(j, -1, i, 0);
break;
}
}
}
map<pair<int, int>, bool> mp;
for(int i=1; i<=n; i++) {
for(int x: adj[i]) {
if(set_of(i) != set_of(x) && mp[{i, x}] == 0) {
mp[{i, x}] = mp[{x, i}] = 1;
adj2[i].push_back(x);
adj2[x].push_back(i);
}
}
}
int s = 0;
for(int i=1; i<=n; i++) {
s += (adj2[i].size() == 1);
}
cout << max(0ll, s - 1) << "\n";
}
/*
10 5
1 2
2 3
3 4
4 5
5 6
5 7
7 8
8 9
9 10
1 2 1 2 5 4 3 4 3 4
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
23772 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
23772 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
23772 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
187 ms |
31140 KB |
Output is correct |
2 |
Execution timed out |
3016 ms |
30996 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
23772 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |