# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
357717 | spatarel | Cat in a tree (BOI17_catinatree) | C++17 | 353 ms | 245100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
#include <deque>
#include <vector>
const int MAX_N = 200000;
int N, D;
std::vector<int> children[MAX_N];
std::deque<int> maxN[MAX_N];
int depth[MAX_N];
void dfs(int u) {
depth[u] = 1;
int deepestChild = -1;
int secondDepth = 0;
for (int v : children[u]) {
dfs(v);
if (depth[u] <= 1 + depth[v]) {
secondDepth = depth[u];
depth[u] = 1 + depth[v];
deepestChild = v;
} else if (secondDepth < 1 + depth[v]) {
secondDepth = 1 + depth[v];
}
}
std::vector<int> maxAdd(secondDepth);
for (int v : children[u]) {
for (int d = 0; d < D - d - 2 && d < depth[v] && d + 1 < secondDepth; d++) {
maxAdd[d + 1] = std::max(maxAdd[d + 1],
maxN[v][d] - (D - d - 2 < depth[v] ? maxN[v][D - d - 2] : 0));
}
}
int maxNU0 = 1;
for (int v : children[u]) {
if (depth[v] > D - 1) {
maxNU0 += maxN[v][D - 1];
}
}
if (deepestChild != -1) {
std::swap(maxN[u], maxN[deepestChild]);
}
maxN[u].push_front(maxNU0);
for (int v : children[u]) {
if (v != deepestChild) {
for (int d = 0; d < D && d < depth[v]; d++) {
maxN[u][d + 1] += maxN[v][d];
}
}
}
for (int d = 0; d + 1 < secondDepth && d < D - d - 2; d++) {
maxN[u][d + 1] = maxAdd[d + 1] + (D - d - 1 < depth[u] ? maxN[u][D - d - 1] : 0);
}
for (int d = secondDepth; d >= 1; d--) {
maxN[u][d - 1] = std::max(maxN[u][d - 1], maxN[u][d]);
}
/*
printf("maxN[%d] = {", u);
for (int d = 0; d < D && d < depth[u]; d++) {
printf("%d, ", maxN[u][d]);
}
printf("}\n");
fflush(stdout);//*/
}
int main() {
scanf("%d%d", &N, &D);
for (int i = 1; i < N; i++) {
int xi;
scanf("%d", &xi);
children[xi].push_back(i);
}
dfs(0);
int answer = maxN[0][0];
printf("%d\n", answer);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |