# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
127609 | 2019-07-09T16:21:02 Z | wilwxk | Mergers (JOI19_mergers) | C++14 | 132 ms | 44200 KB |
#include <bits/stdc++.h> using namespace std; const int MAXN=5e5+5; vector<int> g[MAXN]; map<int, int> mp[MAXN]; int cor[MAXN], contc[MAXN]; int n, x, raiz, respf; int dfs(int cur, int p) { mp[cur][cor[cur]]++; int cont=0; for(auto viz : g[cur]) { if(viz==p) continue; cont+=dfs(viz, cur); if(mp[viz].size()>mp[cur].size()) swap(mp[cur], mp[viz]); for(auto mit : mp[viz]) { mp[cur][mit.first]+=mit.second; if(mp[cur][mit.first]==contc[mit.first]) mp[cur].erase(mit.first); } } if(mp[cur][cor[cur]]==contc[cor[cur]]) mp[cur].erase(cor[cur]); if(mp[cur].empty()) { cont++; if(cont==1) respf++; } return cont>0; } int main() { scanf("%d %d", &n, &x); for(int i=1; i<n; i++) { int a, b; scanf("%d %d", &a, &b); g[a].push_back(b); g[b].push_back(a); } for(int i=1; i<=n; i++) { scanf("%d", &cor[i]); contc[cor[i]]++; } raiz=1; for(int i=1; i<=n; i++) if(g[i].size()!=1) raiz=i; dfs(raiz, raiz); if(n!=1) printf("%d\n", (respf+1)/2); else printf("0\n"); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 35576 KB | Output is correct |
2 | Incorrect | 35 ms | 35576 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 35576 KB | Output is correct |
2 | Incorrect | 35 ms | 35576 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 35576 KB | Output is correct |
2 | Incorrect | 35 ms | 35576 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 132 ms | 44200 KB | Output is correct |
2 | Correct | 123 ms | 39924 KB | Output is correct |
3 | Incorrect | 38 ms | 35960 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 34 ms | 35576 KB | Output is correct |
2 | Incorrect | 35 ms | 35576 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |