이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define maxn 200005
using namespace std;
int n, d;
vector<int> adj[maxn];
int f[maxn];
int ds = 0;
void dfs(int u, int dad) {
f[u] = INT_MAX/3;
vector<int> nho;
for (int v : adj[u]) {
if (v == dad) continue;
dfs(v, u);
nho.emplace_back(f[v]+1);
}
sort(nho.begin(), nho.end());
reverse(nho.begin(), nho.end());
while (nho.size() >= 2 && nho[int(nho.size())-1] + nho[int(nho.size())-2] < d) {--ds; nho.pop_back();}
if (!nho.empty()) f[u] = nho.back();
if (f[u] >= d) {
++ds;
f[u] = 0;
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> d;
for (int i = 2; i <= n; i++) {
int j; cin >> j; ++j;
adj[i].emplace_back(j);
adj[j].emplace_back(i);
}
dfs(1, 0);
cout << ds;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |