# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
163536 | Kalam | Cat in a tree (BOI17_catinatree) | C++11 | 121 ms | 20344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// KALAM
# include<bits/stdc++.h>
using namespace std;
const int N = 200000 + 77;
int n , d , dp[N] , dist[N];
vector < int > adj[N];
void dfs(int v) {
vector < int > V;
for(int u : adj[v])
dfs(u) , V.push_back(dist[u] + 1) , dp[v] += dp[u];
if(V.empty()) { dp[v] = 1; dist[v] = 0; return ; }
sort(V.begin() , V.end() , [&](int x , int y) { return x > y; });
while(V.size() > 1 && V.back() + V[(int) V.size() - 2] < d) -- dp[v] , V.pop_back();
if(V.empty() || V.back() >= d) ++ dp[v] , V.push_back(0);
dist[v] = V.back();
}
int main() {
scanf("%d %d" , & n , & d);
for(int x , i = 2;i <= n;++ i)
scanf("%d" , & x) , adj[x + 1].push_back(i);
dfs(1);
printf("%d\n" , dp[1]);
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... |