이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
int main() {
int N, D;
std::cin >> N >> D;
std::vector<int> P(N - 1);
std::vector<std::vector<int>> tree(N);
for (int i = 0; i < N - 1; ++i) {
std::cin >> P[i];
tree[P[i]].push_back(i + 1);
}
auto dfs = [&](auto &&self, const int v) -> std::pair<int, int> {
if (tree[v].size() == 0) {
return std::make_pair(1, 1);
}
std::vector<std::pair<int, int>> children;
for (const int t : tree[v]) {
children.push_back(self(self, t));
}
std::sort(children.begin(), children.end(), std::greater());
const int m = (int)children.size();
int lm = m - 1;
for (int i = 1; i < m; ++i) {
if (children[i].first + children[i - 1].first < D) {
lm = i - 1;
break;
}
}
int sum = 0;
for (const auto &[a, b] : children) {
sum += b;
}
sum -= m - lm - 1;
int nf = children[lm].first;
if (nf >= D) {
nf = 0;
++sum;
}
++nf;
return std::make_pair(nf, sum);
};
std::cout << dfs(dfs, 0).second << std::endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |