#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(3e5)+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, siz[N], fenwin[N];
ll ans[N];
vector<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 p, int x) {
while(p <= n) {
fenwin[p] += x;
p += (p&-p);
}
}
ll got(int x) {
ll res = 0;
while(x >= 1) {
res += fenwin[x];
x -= (x & -x);
}
return res;
}
ll get(int l, int r) {
return got(r) - got(l - 1);
}
void dfs(int v, bool clear) {
if(lc[v] == -1) {
if(!clear) {
for(auto x : val[v]) update(x, 1);
}
return;
}
if(siz[lc[v]] < siz[rc[v]]) {
dfs(lc[v], 1);
dfs(rc[v], 0);
// light ... heavy
ll ex = 0;
for(auto x : val[lc[v]]) ex += get(1, x-1);
ll ans1 = ans[lc[v]] + ans[rc[v]] + ex;
ex = 0;
// heavy light
for(auto x : val[lc[v]]) ex += get(x+1, n);
ll ans2 = ans[rc[v]] + ans[lc[v]] + ex;
if(clear) {
for(auto x : val[rc[v]]) update(x, -1);
}
if(ans1 < ans2) {
ans[v] = ans1;
}
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( x, 1);
}
else {
dfs(rc[v], 1);
dfs(lc[v], 0);
// light ... heavy
ll ex = 0;
for(auto x : val[rc[v]]) ex += get(1, x-1);
ll ans1 = ans[rc[v]] + ans[lc[v]] + ex;
ex = 0;
// heavy light
for(auto x : val[rc[v]]) ex += get(x+1, n);
ll 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(x, -1);
}
if(ans1 < ans2) {
ans[v] = ans1;
}
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(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 |
3 ms |
7380 KB |
Output is correct |
2 |
Correct |
4 ms |
7384 KB |
Output is correct |
3 |
Correct |
3 ms |
7380 KB |
Output is correct |
4 |
Correct |
3 ms |
7380 KB |
Output is correct |
5 |
Correct |
3 ms |
7380 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
7380 KB |
Output is correct |
2 |
Correct |
3 ms |
7380 KB |
Output is correct |
3 |
Correct |
4 ms |
7344 KB |
Output is correct |
4 |
Correct |
4 ms |
7380 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
7380 KB |
Output is correct |
2 |
Correct |
4 ms |
7384 KB |
Output is correct |
3 |
Correct |
4 ms |
7380 KB |
Output is correct |
4 |
Correct |
3 ms |
7508 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
8060 KB |
Output is correct |
2 |
Correct |
6 ms |
7764 KB |
Output is correct |
3 |
Correct |
5 ms |
8020 KB |
Output is correct |
4 |
Correct |
5 ms |
8148 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
9432 KB |
Output is correct |
2 |
Correct |
10 ms |
8664 KB |
Output is correct |
3 |
Correct |
23 ms |
10844 KB |
Output is correct |
4 |
Correct |
9 ms |
9428 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
37 ms |
13052 KB |
Output is correct |
2 |
Correct |
24 ms |
14000 KB |
Output is correct |
3 |
Correct |
28 ms |
15820 KB |
Output is correct |
4 |
Correct |
28 ms |
15944 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
31 ms |
22624 KB |
Output is correct |
2 |
Correct |
36 ms |
19424 KB |
Output is correct |
3 |
Correct |
45 ms |
17736 KB |
Output is correct |
4 |
Correct |
36 ms |
15632 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
49 ms |
18216 KB |
Output is correct |
2 |
Correct |
53 ms |
19688 KB |
Output is correct |
3 |
Correct |
46 ms |
23928 KB |
Output is correct |
4 |
Correct |
47 ms |
23644 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
46 ms |
22908 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
474 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
687 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |