이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 200'000 + 10;
int n, d;
vector<int> ad[N];
int depth[N];
int a[N];
void dfs(int u, int x) {
if (a[u] >= x) return;
a[u] = x;
for (const auto& v : ad[u]) dfs(v, x - 1);
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n >> d;
for (int v = 1; v < n; ++v) {
int u; cin >> u;
ad[u].push_back(v);
ad[v].push_back(u);
depth[v] = depth[u] + 1;
}
int answer = 0;
vector<int> vt(n); iota(vt.begin(), vt.end(), 0);
sort(vt.begin(), vt.end(), [&](const auto& a, const auto& b) {
return depth[a] > depth[b];
});
for (const auto& i : vt) {
answer += !a[i];
if (!a[i]) dfs(i, d);
}
cout << answer << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |