# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
209380 | super_j6 | Cat in a tree (BOI17_catinatree) | C++14 | 69 ms | 12920 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
#define endl '\n'
#define pi pair<int, int>
#define f first
#define s second
const int maxn = 200000;
int n, m;
vector<int> graph[maxn];
pi dfs(int c){
if(graph[c].empty()) return {1, 1};
pi ret = dfs(graph[c][0]);
if(ret.s == m) ret.f++, ret.s = 0;
for(int i = 1; i < graph[c].size(); i++){
pi p = dfs(graph[c][i]);
if(ret.s + p.s >= m) ret.f += p.f, ret.s = min(ret.s, p.s);
else ret.f += p.f - 1, ret.s = max(ret.s, p.s);
}
ret.s++;
return ret;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 1; i < n; i++){
int x;
cin >> x;
graph[x].push_back(i);
}
cout << dfs(0).f << endl;
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... |