이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define eb emplace_back
using namespace std;
const int MAXN = 200055;
vector<int> G[MAXN];
int prt[MAXN], dep[MAXN];
int A[MAXN], O[MAXN];
int N, D, Ans;
void f(int i) {
if(A[i] < 2) return;
int l = A[i]-1;
for(int v : G[i]) if(A[v] < l) {
A[v] = l;
f(v);
}
}
int main() {
ios::sync_with_stdio(false);
cin >> N >> D;
for(int i = 1; i < N; i++) {
cin >> prt[i];
dep[i] = dep[prt[i]] + 1;
G[prt[i]].eb(i);
G[i].eb(prt[i]);
}
iota(O, O+N, 0); sort(O, O+N, [&](int a, int b) {
return dep[a] > dep[b];
});
for(int oi = 0, i; oi < N; oi++) {
i = O[oi];
if(!A[i]) {
Ans++;
A[i] = D;
f(i);
}
}
cout << Ans << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |