# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
451973 | fadi57 | Cat in a tree (BOI17_catinatree) | C++14 | 13 ms | 23672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
const int mx=1e6+10;
typedef long long ll;
const int mod=1e9+7;
const int MXm=22;
#define F first
#define S second
const int inf=1e9+10;
vector<int>adj[mx];
int n,d,ans;
void dfs(int node,int depth,int par){
if(depth==0){
ans++;
depth=d-1;
}
// cout<<node<<" "<<depth<<" "<<endl;
depth--;
for(auto it:adj[node]){
if(it==par){
continue;
}
dfs(it,depth,node);
}
return;
}
int main(){
cin>>n>>d;
for(int i=1;i<n;i++){
int x;
cin>>x;
adj[i].push_back(x);
adj[x].push_back(i);
}int s;
for(int i=0;i<n;i++){
if(adj[i].size()==1){
s=i;
}
}
dfs(s,d,-1);
if(ans==1){
ans=-1;
}
cout<<ans+1;
}
컴파일 시 표준 에러 (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... |