# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
120615 | 2019-06-25T05:37:09 Z | 임유진(#2961) | Mergers (JOI19_mergers) | C++14 | 140 ms | 55896 KB |
#include<stdio.h> #include<queue> #include<vector> #include<algorithm> using namespace std; #define MAXN 500005 int A[MAXN], B[MAXN], S[MAXN]; vector<int> e[MAXN]; int par[20][MAXN], dep[MAXN]; vector<int> ss[MAXN]; bool chkn[MAXN], chks[MAXN]; queue<int> q; int gs[MAXN]; vector<int> ge[MAXN]; void dfs(int x){ for(auto a:e[x]) if(a!=par[0][x]){ par[0][a]=x; dep[a]=dep[x]+1; dfs(a); } } int anc(int x, int d){ if(d>dep[x]) return 0; for(int i=19; i>=0; i--) if((dep[x]-d)&(1<<i)) x=par[i][x]; return x; } int lca(int x, int y){ if(dep[x]>dep[y]) x=anc(x, dep[y]); else y=anc(y, dep[x]); if(x==y) return x; for(int i=19; i>=0; i--) if(par[i][x]!=par[i][y]){ x=par[i][x]; y=par[i][y]; } return par[0][x]; } int main(){ int N, K; int ans=0; scanf("%d%d", &N, &K); for(int i=0; i<N-1; i++) scanf("%d%d", A+i, B+i); for(int i=1; i<=N; i++) scanf("%d", S+i); for(int i=0; i<N-1; i++){ e[A[i]].push_back(B[i]); e[B[i]].push_back(A[i]); } par[0][1]=1; dfs(1); for(int i=1; i<20; i++) for(int j=1; j<=N; j++) par[i][j]=par[i-1][par[i-1][j]]; //for(int i=1; i<=N; i++) printf("%d %d %d\n", par[0][i], par[1][i], par[2][i]); for(int i=1; i<=N; i++) ss[S[i]].push_back(i); //for(int i=1; i<=K; i++) printf("%d\n", ss[i].size()); for(int i=1; i<=K; i++) if(!chks[i]){ chks[i]=true; q.push(i); //printf("[%d]\n", i); while(!q.empty()){ int t=q.front(); q.pop(); gs[t]=i; int l=ss[t][0]; for(auto a:ss[t]) l=lca(l, a); //printf("lca=%d\n", l); for(auto a:ss[t]){ chkn[a]=true; for(int j=a; j!=l&&!chkn[par[0][j]]; j=par[0][j]){ chkn[par[0][j]]=true; if(!chks[S[par[0][j]]]){ chks[S[par[0][j]]]=true; q.push(S[par[0][j]]); } } } } } //for(int i=1; i<=K; i++) printf("%d ", gs[i]); for(int i=0; i<N-1; i++) if(gs[S[A[i]]]!=gs[S[B[i]]]){ ge[S[A[i]]].push_back(S[B[i]]); ge[S[B[i]]].push_back(S[A[i]]); } for(int i=1; i<=K; i++){ unique(ge[i].begin(), ge[i].end()); if(ge[i].size()==1) ans++; } printf("%d", max(0, ans-1)); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 35712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 35712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 35712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 97 ms | 50288 KB | Output is correct |
2 | Incorrect | 140 ms | 55896 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 35712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |