제출 #1048071

#제출 시각아이디문제언어결과실행 시간메모리
1048071ortsacBall Machine (BOI13_ballmachine)C++17
8.69 / 100
1101 ms23504 KiB
#include <bits/stdc++.h>
 
using namespace std;
 
#define pii pair<int, int>
#define fr first
#define se second
 
const int MAXN = 1e5 + 10;
const int MAXLOG = 18;
int n, q;
int dad[MAXN];
int binl[MAXLOG + 5][MAXN];
int minin[MAXN];
int ocupado[MAXN];
int h[MAXN];
vector<int> adj[MAXN];
int t = 0;
int order[MAXN];
 
void dfs(int node) {
    if (adj[node].empty()) minin[node] = node;
    else minin[node] = 1e9;
    for (auto u : adj[node]) {
        h[u] = h[node] + 1;
        dfs(u);
        minin[node] = min(minin[node], minin[u]);
    }
}
 
void calcOrder(int node) {
    for (auto u : adj[node]) calcOrder(u);
    order[node] = ++t;
}

int find(int node) {
    for (auto u : adj[node]) {
        if (!ocupado[u]) return find(u);
    }
    return node;
}

int lastB(int x) {
    while (ocupado[dad[x]]) x = dad[x];
    return x;
}
 
bool comp(int a, int b) {
    return minin[a] < minin[b];
}
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin >> n >> q;
    int root;
    for (int i = 1; i <= n; i++) {
        cin >> dad[i];
        adj[dad[i]].push_back(i);
        if (dad[i] == 0) root = i;
    }
    dfs(root);
    for (int i = 1; i <= n; i++) {
        //cout << minin[i] << "\n";
        sort(adj[i].begin(), adj[i].end(), comp);
    }
    //cout << "oi\n";
    calcOrder(root);
    priority_queue<pii> ops;
    for (int i = 1; i <= n; i++) {
        //cout << order[i] << "\n";
        ops.push({-order[i], i});
    }
    // lets calc binlift lesgooo
    for (int i = 1; i <= n; i++) {
        binl[0][i] = dad[i];
    }
    for (int j = 1; j < MAXLOG; j++) {
        for (int i = 1; i <= n; i++) {
            binl[j][i] = binl[j - 1][binl[j - 1][i]];
        }
    }
    // done bitches
    //cout << "ok\n";
    int lst = 0;
    while (q--) {
        int t, x;
        cin >> t >> x;
        if (t == 2) {
            // beautiful
            int k = lastB(x);
            cout << h[x] - h[k] << "\n";
            ocupado[k] = 0;
            continue;
        }
        // insert x into 1
        while (x--) {
            int add = find(1);
            lst = add;
            ocupado[add] = 1;
        }
        cout << lst << "\n";
    }
}

컴파일 시 표준 에러 (stderr) 메시지

ballmachine.cpp: In function 'int main()':
ballmachine.cpp:68:14: warning: 'root' may be used uninitialized in this function [-Wmaybe-uninitialized]
   68 |     calcOrder(root);
      |     ~~~~~~~~~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...