#include <bits/stdc++.h>
#define FOR(i, a, b) for(int i = (a); i <= (b); ++i)
#define FORD(i, a, b) for(int i = (a); i >= (b); --i)
#define ii pair <int, int>
#define fi first
#define se second
#define eb emplace_back
#define sz(a) (int)(a).size()
#define all(a) (a).begin(), (a).end()
using namespace std;
const int mxN = 5e5+5;
const int mxL = 2e5+5;
int n, val[mxN], sub[mxN], tin[mxN], tout[mxN], tour[mxN], Time, cur, ans;
vector <int> valN[mxN], ch[mxN];
int newNode() {
return ++cur;
}
struct fenwickTree {
int f[mxL];
void upd(int id, int val) {
for(; id<mxL; id+=id&-id) f[id]+=val;
}
int get(int id) {
int res = 0;
for(; id>0; id-=id&-id) res+=f[id];
return res;
}
} fwt;
struct reverseFenwickTree {
int f[mxL];
void upd(int id, int val) {
for(; id>0; id-=id&-id) f[id]+=val;
}
int get(int id) {
int res = 0;
for(; id<mxL; id+=id&-id) res+=f[id];
return res;
}
} rfwt;
void input(int node) {
int x; cin >> x;
if(x == 0) {
int lfN = newNode();
input(lfN);
int rtN = newNode();
input(rtN);
ch[node].eb(lfN);
ch[node].eb(rtN);
}
else {
val[node] = x;
}
}
void pre_dfs(int u) {
tin[u] = ++Time;
tour[Time] = u;
if(sub[u]) sub[u] = 1;
for(int v:ch[u]) {
pre_dfs(v);
sub[u] += sub[v];
}
tout[u] = Time;
}
void dfs(int u) {
int bigCh = -1;
for(int v:ch[u]) if(bigCh == -1 || sub[v]>sub[bigCh]) bigCh=v;
for(int v:ch[u]) if(v != bigCh) {
dfs(v);
FOR(i,tin[v],tout[v]){
if(val[tour[i]]) {
fwt.upd(val[tour[i]], -1);
rfwt.upd(val[tour[i]], -1);
}
}
}
if(bigCh != -1) dfs(bigCh);
/// main solve
int res=0, rres=0;
for(int v:ch[u]) if(v != bigCh) {
FOR(i,tin[v],tout[v]){
if(val[tour[i]]) {
res+=fwt.get(val[tour[i]]-1);
rres+=rfwt.get(val[tour[i]]+1);
}
}
FOR(i,tin[v],tout[v]){
if(val[tour[i]]) {
fwt.upd(val[tour[i]], 1);
rfwt.upd(val[tour[i]], 1);
}
}
}
ans += min(res, rres);
if(val[u]) {
fwt.upd(val[u], 1);
rfwt.upd(val[u], 1);
}
}
int main() {
if(fopen("test.inp", "r")) {
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
}
cin.tie(0)->sync_with_stdio(0);
cin >> n;
cur = 1; input(1);
pre_dfs(1);
dfs(1);
cout << ans;
}
Compilation message
rot.cpp: In function 'int main()':
rot.cpp:119:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
119 | freopen("test.inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
rot.cpp:120:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
120 | freopen("test.out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
26968 KB |
Output is correct |
2 |
Correct |
5 ms |
26972 KB |
Output is correct |
3 |
Correct |
6 ms |
26972 KB |
Output is correct |
4 |
Correct |
5 ms |
26972 KB |
Output is correct |
5 |
Correct |
6 ms |
26972 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
26972 KB |
Output is correct |
2 |
Correct |
5 ms |
26972 KB |
Output is correct |
3 |
Correct |
5 ms |
26972 KB |
Output is correct |
4 |
Correct |
7 ms |
27140 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
27228 KB |
Output is correct |
2 |
Correct |
10 ms |
27224 KB |
Output is correct |
3 |
Correct |
6 ms |
27228 KB |
Output is correct |
4 |
Correct |
10 ms |
27276 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
205 ms |
27480 KB |
Output is correct |
2 |
Correct |
12 ms |
27224 KB |
Output is correct |
3 |
Correct |
209 ms |
27484 KB |
Output is correct |
4 |
Correct |
261 ms |
27748 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1037 ms |
28760 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
87 ms |
30812 KB |
Output is correct |
2 |
Execution timed out |
1059 ms |
31836 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1064 ms |
39004 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1055 ms |
35932 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1043 ms |
42580 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1061 ms |
41684 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1033 ms |
42064 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |