#include <bits/stdc++.h>
using namespace std;
// #pragma comment(linker, "/stack:2000000000")
// #pragma GCC optimize("Ofast,unroll-loops,fast-math,O3")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll,ll> pll;
#define precise(a) cout<<fixed<<setprecision(a)
#define sz size()
#define ff first
#define ss second
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back
// t1
const ll mod = ll(1e9)+7; //(b + (a%b)) % b (to mod -1%(10^9+7) correctly in c++ its -1 but its suppose to be 10^9+6
const ll MOD = 998244353; // (a%mod)*(binpow(b,mod-2,mod) = (a/b)%mod
const ll N = ll(1e4)+10;
const ll inf = 1e18;
const ld eps = 1e-15L;
const ll B = 400;
// const ld pie = acos(-1.0);
ll lcm(ll a, ll b){ return (a / __gcd(a,b))*b; }
ll binpow(ll a, ll b, ll m){ ll res=1;a%=m; while(b>0){ if(b&1)res=(res*a)%m; a=(a*a)%m; b/=2; } return res%m;}
void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); }
int n, lc[N], rc[N], node, ans[N], t[N*4], siz[N];
deque<int> val[N];
int read() {
++node;
int root = node;
siz[root] = 1;
int v; cin>>v;
if(v == 0) {
lc[root] = read();
rc[root] = read();
siz[root] = siz[lc[root]] + siz[rc[root]];
return root;
}
else {
val[root].pb(v);
lc[root] = rc[root] = -1;
return root;
}
}
void update(int v, int tl, int tr, int p, int x) {
if(tl == tr) {
t[v] += x;
return;
}
int tm = (tl + tr) / 2;
if(p <= tm) update(v+v, tl, tm, p, x);
else update(v+v+1, tm + 1, tr, p, x);
t[v] = t[v+v] + t[v+v+1];
}
ll get(int v, int tl, int tr, int l, int r) {
if(tl > r || l > tr) return 0;
if(l <= tl && tr <= r) return t[v];
int tm = (tl + tr) / 2;
return get(v+v, tl, tm, l, r) + get(v+v+1, tm+1, tr, l, r);
}
void dfs(int v, bool clear) {
if(lc[v] == -1) {
if(!clear) {
for(auto x : val[v]) update(1, 1, n, x, 1);
}
return;
}
if(siz[lc[v]] < siz[rc[v]]) {
dfs(lc[v], 1);
dfs(rc[v], 0);
// light ... heavy
int ex = 0;
for(auto x : val[lc[v]]) ex += get(1, 1, n, 1, x-1);
int ans1 = ans[lc[v]] + ans[rc[v]] + ex;
ex = 0;
// heavy light
for(auto x : val[lc[v]]) ex += get(1, 1, n, x+1, n);
int ans2 = ans[rc[v]] + ans[lc[v]] + ex;
if(clear) {
for(auto x : val[rc[v]]) update(1, 1, n, x, -1);
}
if(ans1 < ans2) {
ans[v] = ans1;
val[v].swap(val[rc[v]]);
for(int j = val[lc[v]].sz-1; j>=0; j--) {
int x = val[lc[v]][j];
val[v].push_front(x);
}
}
else {
ans[v] = ans2;
val[v].swap(val[rc[v]]);
for(auto x : val[lc[v]]) val[v].pb(x);
}
if(!clear) for(auto x : val[lc[v]]) update(1, 1, n, x, 1);
}
else {
dfs(rc[v], 1);
dfs(lc[v], 0);
// light ... heavy
int ex = 0;
for(auto x : val[rc[v]]) ex += get(1, 1, n, 1, x-1);
int ans1 = ans[rc[v]] + ans[lc[v]] + ex;
ex = 0;
// heavy light
for(auto x : val[rc[v]]) ex += get(1, 1, n, x+1, n);
int ans2 = ans[lc[v]] + ans[rc[v]] + ex;
// if(v == 17) {
// cout<<"HEREol\n";
// cout<<ans1<<" "<<ans2<<"\n";
// }
if(clear) {
for(auto x : val[lc[v]]) update(1, 1, n, x, -1);
}
if(ans1 < ans2) {
ans[v] = ans1;
val[v].swap(val[lc[v]]);
for(int j = val[rc[v]].sz-1; j>=0; j--) {
int x = val[rc[v]][j];
val[v].push_front(x);
}
}
else {
ans[v] = ans2;
val[v].swap(val[lc[v]]);
for(auto x : val[rc[v]]) val[v].pb(x);
}
if(!clear) for(auto x : val[rc[v]]) update(1, 1, n, x, 1);
}
// cout<<v<<" "<<ans[v]<<"\n";
// for(auto x : val[v]) cout<<x<<" ";
// cout<<"\n";
// if(v == 5) {
// cout<<"HERE\n";
// cout<<lc[v]<<" "<<rc[v]<<" "<<ans[lc[v]]<<" "<<ans[rc[v]]<<"\n";
// for(auto x : val[lc[v]]) cout<<x<<" ";
// cout<<"\n";
// for(auto x : val[rc[v]]) cout<<x<<" ";
// cout<<"\n";
// }
}
void Baizho()
{
cin>>n;
read();
dfs(1, 0);
cout<<ans[1];
}
int main() {
// Freopen("disrupt");
ios_base::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
// precalc();
int ttt = 1;
// cin>>ttt;
for(int i=1; i<=ttt; i++) {Baizho(); }
}
Compilation message
rot.cpp: In function 'void Freopen(std::string)':
rot.cpp:33:34: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
33 | void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); }
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
rot.cpp:33:76: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
33 | void Freopen(string Key){ freopen((Key+".in").c_str(), "r", stdin); freopen((Key+".out").c_str(), "w", stdout); }
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
6996 KB |
Output is correct |
2 |
Correct |
3 ms |
6996 KB |
Output is correct |
3 |
Correct |
3 ms |
6996 KB |
Output is correct |
4 |
Correct |
3 ms |
6996 KB |
Output is correct |
5 |
Correct |
3 ms |
7048 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
6996 KB |
Output is correct |
2 |
Correct |
3 ms |
6996 KB |
Output is correct |
3 |
Correct |
3 ms |
6996 KB |
Output is correct |
4 |
Correct |
3 ms |
6996 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
7124 KB |
Output is correct |
2 |
Correct |
6 ms |
7124 KB |
Output is correct |
3 |
Correct |
4 ms |
7168 KB |
Output is correct |
4 |
Correct |
4 ms |
7124 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
7636 KB |
Output is correct |
2 |
Correct |
10 ms |
7588 KB |
Output is correct |
3 |
Correct |
6 ms |
7636 KB |
Output is correct |
4 |
Correct |
6 ms |
7844 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
11 ms |
15128 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
14292 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
14804 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
14548 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
14404 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
15120 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
10 ms |
15132 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |