# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985758 | VinhLuu | Cat in a tree (BOI17_catinatree) | C++17 | 3 ms | 5172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
//#define int long long
//#define ll long long
#define fi first
#define se second
#define pb push_back
#define all(lmao) lmao.begin(), lmao.end()
using namespace std;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tp;
const int N = 2e5 + 5;
const int oo = 1e9 + 1;
const int mod = 1e9 + 7;
int block = 316;
//const ll oo = 5e18;
int n, D, f[N], ans, g[N];
vector<int> p[N];
void dfs(int u){
if((int)p[u].size() == 0){
f[u] = 0;
ans++;
return;
}
for(auto j : p[u]) dfs(j);
sort(all(p[u]), [&](int x,int y){return f[x] > f[y];});
int mi = f[p[u][0]] + 1;
for(int i = 1; i < (int)p[u].size(); i ++){
int j = p[u][i];
if(mi + 1 + f[j] < D) ans--;
mi = min(mi, 1 + f[j]);
}
if(mi >= D) ans++, f[u] = 0;
else f[u] = mi;
// cerr << u << " " << f[u] << " y\n";
}
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define task "v"
if(fopen(task ".inp","r")){
freopen(task ".inp","r",stdin);
freopen(task ".out","w",stdout);
}
cin >> n >> D;
for(int i = 1; i < n; i ++){
int x; cin >> x;
p[x].pb(i);
// cerr << x << " " << i << " o\n";
}
// for(int i = 0; i < n; i ++) cerr << i << " " << (int)p[i].size() << " tt\n";
dfs(0);
cout << ans;
}
컴파일 시 표준 에러 (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... |