This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define ll long long
#define pb push_back
#define db(val) "[" #val " = " << (val) << "] "
const ll mod = 1e9 + 7;
const int maxn = 1e5 + 4;
const int INF = 1e9;
const int N = 16;
int n, q, root, f[maxn], h[maxn], up[maxn][20], tin[maxn];
bool has[maxn];
vector<int> adj[maxn];
set<pair<int,int>> mySet;
void dfs(int u) {
for (int j = 1; j <= N; j++)
up[u][j] = up[up[u][j - 1]][j - 1];
f[u] = u;
for (int v : adj[u]) {
h[v] = h[u] + 1;
up[v][0] = u;
dfs(v);
f[u] = min(f[u], f[v]);
}
}
void dfs2(int u) {
vector<pair<int,int>> ord;
for (int v : adj[u])
ord.pb({f[v], v});
sort(ord.begin(), ord.end());
for (auto it : ord)
dfs2(it.se);
tin[u] = ++tin[0];
mySet.insert({tin[u], u});
}
int jump(int u) {
for (int j = N; j >= 0; j--)
if (has[up[u][j]])
u = up[u][j];
return u;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
//freopen(".INP", "r", stdin);
//freopen(".OUT", "w", stdout);
cin >> n >> q;
for (int i = 1; i <= n; i++) {
int p; cin >> p;
if (p) adj[p].pb(i);
else root = i;
}
dfs(root);
dfs2(root);
while (q--) {
int type; cin >> type;
if (type == 1) {
int k; cin >> k;
while (k--) {
auto it = *mySet.begin();
has[it.se] = 1;
mySet.erase(mySet.begin());
if (k == 0) cout << it.se << '\n';
}
}
else {
int u; cin >> u;
int p = jump(u);
has[p] = 0;
mySet.insert({tin[p], p});
cout << h[u] - h[p] << '\n';
}
}
}
# | 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... |