# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
120602 | 2019-06-25T05:10:57 Z | 송준혁(#2962) | Mergers (JOI19_mergers) | C++14 | 310 ms | 42844 KB |
#include <bits/stdc++.h> using namespace std; int N, K, ans; vector<int> adj[505050]; vector<int> rst[505050]; int S[505050], E[505050], num=1; int st[505050], T[505050]; int P[22][505050], dep[505050]; void update(int t, int v){ while (t <= N){ T[t] += v; t += t & -t; } } int read(int t){ int ret=0; while (t){ ret += T[t]; t ^= t & -t; } return ret; } int dfs1(int u, int p, int depth){ P[0][u] = p; S[u] = num; E[u] = num++; dep[u] = depth; for (int v : adj[u]){ if (v == p) continue; E[u] = dfs1(v, u, depth+1); } return E[u]; } int dfs2(int u, int p){ int cnt = 0; for (int v : adj[u]){ if (v == p) continue; cnt += dfs2(v, u); } if (u == 1){ ans -= cnt / 2; return 0; } if (read(E[u]) - read(S[u]-1) == 0){ ans -= cnt / 2; if (~cnt & 1) ans++; return 1; } return cnt; } int LCA(int u, int v){ if (dep[u] < dep[v]) swap(u, v); for (int i=20; i>=0; i--) if (dep[P[i][u]] >= dep[v]) u = P[i][u]; if (u == v) return u; for (int i=20; i>=0; i--) if (P[i][u] != P[i][v]) u = P[i][u], v = P[i][v]; return P[0][u]; } int main(){ int u, v; scanf("%d %d", &N, &K); for (int i=1; i<N; i++){ scanf("%d %d", &u, &v); adj[u].push_back(v); adj[v].push_back(u); } for (int i=1; i<=N; i++){ scanf("%d", &st[i]); rst[st[i]].push_back(i); } dfs1(1, 0, 1); for (int i=1; i<=N; i++) update(i, 1); for (int i=1; i<=20; i++) for (int j=1; j<=N; j++) P[i][j] = P[i-1][P[i-1][j]]; for (int i=1; i<=K; i++){ if (rst[i].empty()) continue; int lca = rst[i][0]; for (int j=1; j<(int)rst[i].size(); j++) lca = LCA(lca, rst[i][j]); update(lca, -rst[i].size()); } dfs2(1, 0); printf("%d", ans); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 24312 KB | Output is correct |
2 | Incorrect | 23 ms | 24320 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 24312 KB | Output is correct |
2 | Incorrect | 23 ms | 24320 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 24312 KB | Output is correct |
2 | Incorrect | 23 ms | 24320 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 310 ms | 39948 KB | Output is correct |
2 | Correct | 152 ms | 42844 KB | Output is correct |
3 | Incorrect | 28 ms | 24696 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 24312 KB | Output is correct |
2 | Incorrect | 23 ms | 24320 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |