# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
196861 | errorgorn | Ball Machine (BOI13_ballmachine) | C++14 | 293 ms | 31096 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
struct node{
int s,e,m;
bool empty=true;
node *l,*r;
node (int _s,int _e){
s=_s,e=_e,m=s+e>>1;
if (s!=e){
l=new node(s,m);
r=new node(m+1,e);
}
}
void update(int i){
if (s==e) empty^=true;
else{
if (i<=m) l->update(i);
else r->update(i);
empty=l->empty||r->empty;
}
}
int query(){
if (s==e) return s;
else{
if (l->empty) l->query();
else r->query();
}
}
} *root=new node(0,100005);
int n,q;
int __root;
int parent[100005][20];
vector<int> al[100005];
int pos[100005];
int perm[100005];
bool filled[100005];
int counter=0;
int small[100005];
int dfs_pre(int i,int p){
small[i]=i;
for (auto &it:al[i]){
if (it==p) continue;
small[i]=min(small[i],dfs_pre(it,i));
}
return small[i];
}
void dfs(int i,int p){
int curr;
for (auto &it:al[i]){
if (it==p) continue;
curr=parent[it][0]=i;
for (int x=0;parent[curr][x]!=-1;x++){
curr=parent[it][x+1]=parent[curr][x];
}
dfs(it,i);
}
pos[counter]=i;
perm[i]=counter++;
}
int main(){
scanf("%d%d",&n,&q);
int temp;
for (int x=1;x<=n;x++){
scanf("%d",&temp);
if (temp==0){
__root=x;
}
else{
al[temp].push_back(x);
}
}
dfs_pre(__root,-1);
for (int x=1;x<=n;x++) sort(al[x].begin(),al[x].end(),[](int i,int j){
return small[i]<small[j];
});
memset(parent,-1,sizeof(parent));
dfs(__root,-1);
int a,b;
int high;
int nums;
while (q--){
scanf("%d%d",&a,&b);
if (a==1){
for (int x=0;x<b;x++){
high=root->query();
filled[pos[high]]=true;
root->update(high);
}
printf("%d\n",pos[high]);
}
else{
high=b;
nums=0;
for (int x=19;~x;x--){
if (parent[high][x]!=-1 && filled[parent[high][x]]) high=parent[high][x],nums|=(1<<x);
}
filled[high]=false;
root->update(perm[high]);
printf("%d\n",nums);
}
}
}
컴파일 시 표준 에러 (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... |