# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
703143 | browntoad | Cat in a tree (BOI17_catinatree) | C++14 | 151 ms | 35512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e5+5;
int n, d;
vector<int> graph[maxn], dp(maxn);
multiset<int> pen[maxn]; // pending
void dfs(int x, int dep){
for (int i=0; i<graph[x].size(); i++){
dfs(graph[x][i], dep+1);
dp[x]+=dp[graph[x][i]];
if (pen[graph[x][i]].size() > pen[x].size()) swap(pen[x], pen[graph[x][i]]);
for (int j:pen[graph[x][i]]) pen[x].insert(j);
}
while(pen[x].size()>=1 && (*prev(pen[x].end()))>=dep+d) {
dp[x]++;
pen[x].erase(prev(pen[x].end()));
}
while(pen[x].size()>=2){
if ((*pen[x].begin())-dep+(*next(pen[x].begin()))-dep < d){
pen[x].erase(pen[x].begin());
}
else break;
}
if (pen[x].size()==0) pen[x].insert(dep);
}
int main(){
cin>>n>>d;
for (int i=2; i<=n; i++){
int x; cin>>x;
graph[x+1].push_back(i);
}
dfs(1, 0);
cout<<dp[1]+pen[1].size()<<endl;
}
컴파일 시 표준 에러 (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... |