# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1039043 | Hanksburger | Cat in a tree (BOI17_catinatree) | C++17 | 36 ms | 21844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> j[200005];
int n, d, s, x;
int f(int u)
{
s++;
vector<int> a;
a.push_back(0);
for (int v:j[u])
a.push_back(f(v)+1);
sort(a.begin(), a.end());
int m=0;
while (m+1<a.size() && a[m]+a[m+1]<d)
m++, s--;
return a[m];
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> d;
for (int i=1; i<n; i++)
{
cin >> x;
j[x].push_back(i);
}
f(0);
cout << s;
}
컴파일 시 표준 에러 (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... |