# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
26658 | kdh9949 | Ball Machine (BOI13_ballmachine) | C++14 | 299 ms | 33208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct Nod{
int p, x;
bool operator<(const Nod &oth) const {
return p > oth.p;
}
};
priority_queue<Nod> pq;
int n, q, r, mn[100010], pn[100010], cnt, c[100010], sp[17][100010];
vector<int> ch[100010], nc[100010];
int g(int x){
priority_queue<Nod> pq;
for(auto &i : ch[x]){
pq.push({g(i), i});
}
int ret = x;
for(; !pq.empty(); pq.pop()){
nc[x].push_back(pq.top().x);
ret = min(ret, pq.top().p);
}
return ret;
}
void f(int x){
for(int i = 1; i < 17; i++) sp[i][x] = sp[i - 1][sp[i - 1][x]];
for(auto &i : nc[x]) f(i);
pn[x] = ++cnt;
pq.push({pn[x], x});
}
int main(){
scanf("%d%d", &n, &q);
for(int i = 1; i <= n; i++){
scanf("%d", sp[0] + i);
if(!sp[0][i]) r = i;
else ch[sp[0][i]].push_back(i);
}
g(r);
f(r);
for(int t, x, ans; q--; ){
scanf("%d%d", &t, &x);
if(t == 1){
while(x--){
ans = pq.top().x;
c[pq.top().x] = 1;
pq.pop();
}
printf("%d\n", ans);
}
else{
ans = 0;
for(int i = 16; i >= 0; i--){
if(c[sp[i][x]]){
ans += (1 << i);
x = sp[i][x];
}
}
c[x] = 0;
pq.push({pn[x], x});
printf("%d\n", 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |