# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
110491 | wilwxk | Ball Machine (BOI13_ballmachine) | C++11 | 1090 ms | 20840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN=1e5+5;
const int LOGN=22;
vector<int> g[MAXN];
int dp[MAXN][LOGN];
int prof[MAXN], gin[MAXN];
int marc[MAXN];
set<int> s;
int n, q, root;
int contv;
void dfs(int cur, int p) {
for(auto viz : g[cur]) {
if(viz==p) continue;
dp[viz][0]=cur;
gin[cur]++;
prof[viz]=prof[cur]+1;
dfs(viz, cur);
}
}
int pula(int cur) {
for(int i=LOGN-1; i>=0; i--) {
if(marc[dp[cur][i]]) cur=dp[cur][i];
}
return cur;
}
int main() {
scanf("%d %d", &n, &q);
for(int i=1; i<=n; i++) {
int a; scanf("%d", &a);
if(a==0) root=i;
else g[a].push_back(i), g[i].push_back(a);
}
dfs(root, root);
for(int i=1; i<=n; i++) if(!gin[i]) s.insert(i);
for(int i=1; i<LOGN; i++) {
for(int j=1; j<=n; j++) dp[j][i]=dp[dp[j][i-1]][i-1];
}
while(q--) {
int a, x; scanf("%d %d", &a, &x);
if(a==1) {
int cur, p;
while(x--) {
cur= *s.begin();
p=dp[cur][0];
s.erase(s.begin());
marc[cur]=1;
gin[p]--;
if(!gin[p]) s.insert(p);
}
printf("%d\n", cur);
}
else {
int cur=pula(x);
int p=dp[cur][0];
marc[cur]=0;
gin[p]++;
s.erase(p);
s.insert(cur);
printf("%d\n", prof[x]-prof[cur]);
}
}
}
컴파일 시 표준 에러 (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... |