# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
375902 | ntabc05101 | Cat in a tree (BOI17_catinatree) | C++14 | 110 ms | 18944 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
const int max_n=200000;
int n, d;
std::vector<int> adjList[5+max_n];
std::pair<int, int> dfs(int vertex, int parent=-1) {
std::vector< std::pair<int, int> > v;
for (auto& to: adjList[vertex]) {
if (to!=parent) {
v.push_back(dfs(to, vertex));
}
}
if (v.empty()) {
return std::make_pair(1, 1);
}
std::sort(begin(v), end(v), std::greater< std::pair<int, int> >());
int pos=1;
while (pos<v.size() and v[pos].first+v[pos-1].first>=d) ++pos;
--pos;
int ret=pos+1;
for (auto& _: v) ret+=_.second-1;
if (v.back().first>=d) {
++ret;
return std::make_pair(1, ret);
}
return std::make_pair(v[pos].first+1, ret);
}
int main() {
std::ios_base::sync_with_stdio(0); std::cin.tie(0);
std::cin>>n>>d;
for (int i=1, x; i<n; ++i) {
std::cin>>x;
adjList[x].push_back(i);
}
std::cout<<dfs(0).second<<"\n";
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... |