#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define x first
#define y second
ll N, K, A[500005], S[500005], vis[500005];
vector<ll> T[500005];
ll p[500005];
ll Find(ll n) { return (p[n] < 0 ? n : p[n] = Find(p[n])); }
void Union(ll u, ll v) { u = Find(u), v = Find(v); if(u != v) p[u] += p[v], p[v] = u; }
ll Size(ll u, ll p){
S[u] = 1;
for(auto v : T[u]){
if(v != p && !vis[v]) S[u] += Size(v, u);
}
return S[u];
}
ll Cent(ll u, ll p, ll n){
for(auto v : T[u]){
if(v != p && !vis[v] && S[v] > n / 2) return Cent(v, u, n);
}
return u;
}
ll Cnt[500005];
void dfs(ll u, ll p, ll d){
Cnt[A[u]] += d;
for(auto v : T[u]){
if(v == p || vis[v]) continue;
dfs(v, u, d);
}
}
ll Comp(ll u, ll p, ll c){
ll ok = (Cnt[A[u]] > 0);
for(auto v : T[u]){
if(v == p || vis[v]) continue;
if(Comp(v, u, c)) ok = 1;
}
return ok;
}
void dnc(ll _u){
ll u = Cent(_u, -1, Size(_u, -1));
vis[u] = 1;
Cnt[A[u]]++;
for(auto v : T[u]){
if(!vis[v]) dfs(v, u, 1);
}
for(auto v : T[u]){
if(vis[v]) continue;
dfs(v, u, -1);
Comp(v, u, A[u]);
dfs(v, u, 1);
}
for(auto v : T[u]){
if(!vis[v]) dfs(v, u, -1);
}
Cnt[A[u]]--;
for(auto v : T[u]){
if(!vis[v]) dnc(v);
}
}
ll deg[500005];
int main(){
cin.tie(0) -> sync_with_stdio(0);
cin >> N >> K;
for(ll i = 1; i < N; i++){
ll u, v; cin >> u >> v;
T[u].push_back(v); T[v].push_back(u);
}
for(ll i = 1; i <= N; i++){
cin >> A[i];
}
fill(p, p + N + 1, -1LL);
dnc(1);
for(ll i = 1; i <= N; i++){
for(auto j : T[i]){
if(i > j) continue;
ll a = Find(A[i]), b = Find(A[j]);
if(a != b){
deg[a]++, deg[b]++;
}
}
}
ll f = 0;
for(ll i = 1; i <= N; i++){
if(deg[i] == 1) f++;
}
cout << (f + 1) / 2;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
5 ms |
12124 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
5 ms |
12124 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
5 ms |
12124 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
33 ms |
19152 KB |
Output is correct |
2 |
Correct |
38 ms |
20676 KB |
Output is correct |
3 |
Incorrect |
8 ms |
12376 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
5 ms |
12124 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |