#include <bits/stdc++.h>
using namespace std;
const int N = 4e5;
int a[N + 8];
int adj[2][N + 8];
set<int> _list[N + 8];
long long inv[N + 8];
int sz[N + 8];
int n, tmp, id = 1;
void input() {
int x; cin >> x;
if (x) {_list[id].insert(x); ++sz[id]; a[id] = x; return;}
int t = id;
adj[t][0] = id + 1;
++id; input();
adj[t][1] = id + 1;
++id; input();
}
void DFS_sz(int u, int p) {
if (adj[u][0] == 0) return;
DFS_sz(adj[u][0], u); sz[u] += sz[adj[u][0]];
DFS_sz(adj[u][1], u); sz[u] += sz[adj[u][1]];
}
struct Binary_Indexed_Tree {
vector<int> BIT;
Binary_Indexed_Tree() {BIT.assign(N / 2 + 8, 0);}
int pt;
void update(int u, int v) {
pt = u;
while (pt <= N / 2) {
BIT[pt] += v;
pt += pt & -pt;
}
}
int res;
int pf(int p) {
if (p <= 0) return 0;
res = 0; pt = p;
while (pt) {
res += BIT[pt];
pt -= pt & -pt;
}
return res;
}
int range(int l, int r) {
if (l > r) return 0;
return pf(r) - pf(l - 1);
}
} tree;
int costLR, costRL;
void DFS(int u, int p) {
if (sz[u] > 1) {
int L = adj[u][0], R = adj[u][1];
if (sz[L] < sz[R]) swap(L, R);
// cout << u << " -> " << R << endl;
DFS(R, u);
inv[u] += inv[R];
for (int item : _list[R]) tree.update(item, -1);
// cout << u << " -> " << L << endl;
DFS(L, u);
inv[u] += inv[L];
costLR = costRL = 0;
for (int item : _list[R]) costLR += tree.range(item + 1, n), costRL += tree.range(1, item - 1);
inv[u] += min(costLR, costRL);
for (int item : _list[R]) tree.update(item, +1);
for (int v : {L, R}) {
if (_list[u].size() < _list[v].size()) swap(_list[u], _list[v]);
for (int item : _list[v]) _list[u].insert(item);
}
}
if (a[u]) tree.update(a[u], +1);
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n; input();
DFS_sz(1, 0);
DFS(1, 0); cout << inv[1];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
22 ms |
41052 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
22 ms |
41048 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
21 ms |
40932 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
31 ms |
41096 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
26 ms |
41044 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
23 ms |
41044 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
27 ms |
41048 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
33 ms |
41044 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
23 ms |
41176 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
23 ms |
41048 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
21 ms |
41048 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |