답안 #862030

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
862030 2023-10-17T11:57:59 Z vjudge1 Tree Rotations (POI11_rot) C++17
0 / 100
194 ms 48720 KB
//order_of_key(k): Number of items strictly smaller than k .
//find_by_order(k): K-th element in a set (counting from zero).

//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>

#define file(s) if(fopen(s".in","r")) freopen(s".in","r",stdin);freopen(s".out","w",stdout)
#define all(x) (x).begin(), (x).end()
#define len(x) (int)x.size()
#define tm (tl + tr >> 1)
#define ls v << 1, tl, tm
#define rs v << 1 | 1, tm + 1, tr
#define pb push_back
#define pf push_front
#define popb pop_back
#define popf pop_front
#define elif else if
#define F first
#define S second
#define int long long

using namespace std;
using namespace __gnu_pbds;

typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
typedef unsigned long long ull;
typedef long long ll;
typedef double db;
typedef long double ld;

const int MOD = 1e9 + 7;
const int N = 2e5 + 7;
const int P = 911;
const ll INF = 1e18;

int rnd() {
	int x = rand() << 15;
	return x ^ rand();
}

vector <int> g[N];
int sz[N], res[N], ans, cnt[N], a[N], n, t[N << 2];
int id[N];
vector <int> vc[N];

void upd(int idx, int val, int v = 1, int tl = 0, int tr = n + 1) {
	if (tl == tr) {
		t[v] += val;
		return;
	}
	if (idx <= tm) upd(idx, val, ls);
	else upd(idx, val, rs);
	t[v] = t[v << 1] + t[v << 1 | 1];
}

int get(int l, int r, int v = 1, int tl = 1, int tr = n) {
	if (l <= tl && tr <= r) {
		return t[v];
	}
	elif (r < tl || tr < l) return 0;
	return get(l, r, ls) + get(l, r, rs);
}

void calc(int v = 1, int pr = 0) {
	id[v] = v;
	sz[v] = 1;
	for (int u: g[v]) if (u != pr) {
		calc(u, v);
		sz[v] += sz[u];
	}
}

void add(int v) {
	if (!a[v]) return;
	upd(a[v], 1);
}

void clr(int v) {
	if (!a[v]) return;
	upd(a[v], -1);
}

void dadd(int v) {
	add(v);
	for (int u: g[v]) {
		dadd(u);
	}
}

void dclr(int v) {
	clr(v);
	for (int u: g[v]) {
		dclr(u);
	}
}


void dfs(int v = 1, bool act = 0) {
	int to = 0;
	for (int u: g[v]) {
//		cout << "dd " << v << ' ' << u << '\n'; 
		if (sz[u] > sz[to]) {
			to = u;
		}
	}
	for (int u: g[v]) {
		if (u != to) {
			dfs(u, 1);
			id[v] = id[u];
		}
	}
	if (to) dfs(to, 0);
	int cur1 = 0, cur2 = 0;
//	cout << "ans " << v << '\n';
	for (int it: vc[id[v]]) {
		cur1 += get(it + 1, n + 1);
		cur2 += get(0, it - 1);
		if (id[to]) vc[id[to]].pb(it);
//		cout << it << ' ' << cur1 << ' ' << cur2 << '\n';
	}
	if (to) id[v] = id[to];
	ans += min(cur1, cur2);
	if (a[v]) {
//		cout << v << ' ' << a[v] << ' ' << id[v] << '\n';
		vc[id[v]].pb(a[v]);
	}
	add(v);
	for (int u: g[v]) if (u != to) {
		dadd(u);
	}
	if (act) {
		dclr(v);
		return;
	}
}

int temp = 1;
set <int> st;
map <int, int> mp;

void input(int v) {
	int x;
	cin >> x;
	if (x) {
		st.insert(x);
		a[v] = x;
		return;
	}
	temp++;
	g[v].pb(temp);
	input(temp);
	temp++;
	g[v].pb(temp);
	input(temp);
}

void GazizMadi() {
	cin >> n;
	input(1);
	for (int it: st) {
		mp[it] = len(mp) + 1;
	}
	for (int i = 1; i <= temp; i++) {
		a[i] = mp[a[i]];
	}
	calc();
	dfs();
	cout << ans;
}

const bool Cases = 0;

signed main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	srand(time(0));
	int TT = 1;
	if (Cases) cin >> TT;
	for (int i = 1; i <= TT; i++) {
		//cout << "Case " << i << ": ";
		GazizMadi();
	}
}

Compilation message

rot.cpp: In function 'void upd(long long int, long long int, long long int, long long int, long long int)':
rot.cpp:13:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   13 | #define tm (tl + tr >> 1)
      |             ~~~^~~~
rot.cpp:54:13: note: in expansion of macro 'tm'
   54 |  if (idx <= tm) upd(idx, val, ls);
      |             ^~
rot.cpp:13:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   13 | #define tm (tl + tr >> 1)
      |             ~~~^~~~
rot.cpp:14:24: note: in expansion of macro 'tm'
   14 | #define ls v << 1, tl, tm
      |                        ^~
rot.cpp:54:31: note: in expansion of macro 'ls'
   54 |  if (idx <= tm) upd(idx, val, ls);
      |                               ^~
rot.cpp:13:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   13 | #define tm (tl + tr >> 1)
      |             ~~~^~~~
rot.cpp:15:24: note: in expansion of macro 'tm'
   15 | #define rs v << 1 | 1, tm + 1, tr
      |                        ^~
rot.cpp:55:21: note: in expansion of macro 'rs'
   55 |  else upd(idx, val, rs);
      |                     ^~
rot.cpp: In function 'long long int get(long long int, long long int, long long int, long long int, long long int)':
rot.cpp:13:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   13 | #define tm (tl + tr >> 1)
      |             ~~~^~~~
rot.cpp:14:24: note: in expansion of macro 'tm'
   14 | #define ls v << 1, tl, tm
      |                        ^~
rot.cpp:64:19: note: in expansion of macro 'ls'
   64 |  return get(l, r, ls) + get(l, r, rs);
      |                   ^~
rot.cpp:13:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   13 | #define tm (tl + tr >> 1)
      |             ~~~^~~~
rot.cpp:15:24: note: in expansion of macro 'tm'
   15 | #define rs v << 1 | 1, tm + 1, tr
      |                        ^~
rot.cpp:64:35: note: in expansion of macro 'rs'
   64 |  return get(l, r, ls) + get(l, r, rs);
      |                                   ^~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 17752 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 17800 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 17756 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 18776 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 23208 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 194 ms 31316 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 149 ms 44748 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 69 ms 47896 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 48 ms 43348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 64 ms 48720 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 61 ms 48464 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -