# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
30530 | RezwanArefin01 | Ball Machine (BOI13_ballmachine) | C++14 | 289 ms | 22100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Bismillahir Rahmanir Rahim
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 10;
vector<int> adj[maxn], post;
int prior[maxn], dep[maxn], par[maxn][18];
bool has[maxn];
int MinDfs(int u) {
prior[u] = u;
for(int v : adj[u]) {
dep[v] = dep[u] + 1;
prior[u] = min(prior[u], MinDfs(v));
}
sort(adj[u].begin(), adj[u].end(), [](int &a, int &b) { return prior[a] < prior[b]; } );
return prior[u];
}
void postDfs(int u) {
for(int i = 1; i <= 17; i++)
if(par[u][i-1])
par[u][i] = par[par[u][i-1]][i-1];
if(!adj[u].size()) { post.push_back(u); return; }
for(int v : adj[u]) postDfs(v);
post.push_back(u);
}
struct node{
int u, prior;
bool operator < (const node &p) const {
return prior > p.prior;
}
};
int main(int argc, char const *argv[]) {
#ifdef LOCAL_TESTING
freopen("in", "r", stdin);
#endif
int n, q, root;
scanf("%d %d", &n, &q);
for(int i = 1; i <= n; i++) {
int p; scanf("%d", &p);
if(p == 0) root = i;
adj[p].push_back(i);
par[i][0] = p;
}
MinDfs(root);
postDfs(root);
priority_queue<node> Q;
for(int i = 0; i < n; i++) {
Q.push({post[i], i});
prior[post[i]] = i;
has[post[i]] = 0;
}
while(q--) {
int c, x;
scanf("%d %d", &c, &x);
if(c == 1) {
node u;
while(x--) {
u = Q.top();
has[u.u] = 1;
Q.pop();
} printf("%d\n", u.u);
} else {
int y = x;
for(int i = 17; i >= 0; i--) if(par[y][i]) {
if(has[par[y][i]]) y = par[y][i];
}
has[y] = 0;
printf("%d\n",dep[x] - dep[y]);
Q.push({y, prior[y]});
}
}
}
컴파일 시 표준 에러 (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... |