Submission #1116312

# Submission time Handle Problem Language Result Execution time Memory
1116312 2024-11-21T13:29:05 Z FubuGold Tree Rotations (POI11_rot) C++14
0 / 100
240 ms 65536 KB
#include <bits/stdc++.h>

using namespace std;

const int MAXN = 500000;

struct BIT {
    vector<int> tree;
    int n;
    void init(int _n) {
        n = _n;
        tree.assign(n+1,0);
    }
    void update(int pos,int val) {
        for (;pos <= n;pos += pos & -pos) tree[pos] += val;
    }
    int query(int pos) {
        int sum = 0;
        for (;pos > 0;pos -= pos & -pos) sum += tree[pos];
        return sum;
    }
    int query(int l,int r) {
        if (l > r) return 0;
        return query(r) - query(l-1);
    }
} tree;

vector<int> adj[MAXN+1];
stack<pair<int,int>> st;
vector<int> ch[MAXN+1];
int val[MAXN+1];
int sz[MAXN+1];
int n;
int cnt;
long long ans = 0;

int cal_sz(int u) {
    if (adj[u].size() == 0) return sz[u] = 1;
    sz[u] += cal_sz(adj[u][0]);
    sz[u] += cal_sz(adj[u][1]);
    return sz[u];
}

void dfs(int u,int keep) {
    if (adj[u].size() == 0) {
        ch[u].push_back(val[u]);
        if (keep) tree.update(val[u],1);
        return;
    }
    int lt = adj[u][0], rt = adj[u][1];
    long long tmp = 0;
    dfs(lt,1);
    dfs(rt,1);
//    if (sz[lt] < sz[rt]) {
//        dfs(lt,0);
//        dfs(rt,1);
//        ch[u].swap(ch[rt]);
//        for (int i=0;i<ch[lt].size();i++) {
//            int v = ch[lt][i];
//            ch[u].push_back(v);
////            cerr << u << ' ' << v << '\n';
//            tmp += tree.query(1,v-1);
//        }
//        if (!keep) {
//            for (int i=0;i<ch[rt].size();i++) tree.update(ch[rt][i],-1);
//        }
//        else {
//            for (int i=0;i<ch[lt].size();i++) tree.update(ch[lt][i],1);
//        }
//    }
//    else {
//        dfs(rt,0);
//        dfs(lt,1);
//        ch[u].swap(ch[lt]);
//        for (int i=0;i<ch[rt].size();i++) {
//            int v = ch[rt][i];
////            cerr << u << ' ' << v << '\n';
//            ch[u].push_back(v);
//            tmp += tree.query(v+1,n);
//        }
//        if (!keep) {
//            for (int i=0;i<ch[lt].size();i++) tree.update(ch[lt][i],-1);
//        }
//        else {
//            for (int i=0;i<ch[rt].size();i++) tree.update(ch[rt][i],1);
//        }
//    }
    tmp = min(tmp,1ll * sz[lt] * sz[rt] - tmp);
    ans += tmp;
}

int main() {
    cin.tie(0) -> sync_with_stdio(0);
    cin >> n;
    tree.init(n);
    for (int i=1;;i++) {
        cin >> val[i];
        if (st.size()) adj[st.top().first].push_back(i);
        if (val[i] == 0) {
            st.push({i,0});
        }
        else {
            st.top().second++;
            if (st.top().second == 2) st.pop();
        }
        if (cnt == n) break;
    }
    cal_sz(1);
    dfs(1,1);
    cout << ans;
    return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 174 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 217 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 202 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 201 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 227 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 232 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 240 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 134 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 214 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 221 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 230 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -