#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll tot_dist = 0, ans = LLONG_MAX;
struct Node {
ll x, y, l;
Node *c[2];
Node(ll X = 0, ll Y = 0): x(X), y(Y), l(0) {
c[0] = c[1] = NULL;
}
Node* insert(Node *ins, int child) {
l++;
if (!c[child]) {
c[child] = ins;
return ins;
}
if (ins->x < c[child]->x || ins->y < c[child]->y) {
ins->c[child] = c[child];
ins->l += c[child]->l;
c[child] = ins;
return ins;
}
if (ins->x > c[child]->x || ins->y > c[child]->y)
return c[child]->insert(ins, child);
return c[child];
}
};
int n;
Node *root = new Node();
void dfs(Node *curr) {
ans = min(ans, tot_dist);
for (int i = 0; i < 2; i++) {
if (curr->c[i]) {
ll dx = curr->x - curr->c[i]->x + curr->y - curr->c[i]->y;
tot_dist += dx * (2 * curr->c[i]->l - n);
dfs(curr->c[i]);
tot_dist -= dx * (2 * curr->c[i]->l - n);
}
}
}
pair<ll, ll> a[100000];
bool cmp(pair<ll, ll> x, pair<ll, ll> y) {
ll diff = x.first + x.second < y.first + y.second;
if (!diff) return x.first < y.first;
return diff > 0;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i].first >> a[i].second;
tot_dist += a[i].first + a[i].second;
}
sort(a, a + n, cmp);
for (int i = 0; i < n; i++) {
Node *curr = root;
ll cx = 0, cy = 0;
for (int j = 30; ~j; j--) {
if (a[i].first & (1 << j)) {
cx |= (1 << j);
curr = curr->insert(new Node(cx, cy), 0);
} else if (a[i].second & (1 << j)) {
cy |= (1 << j);
curr = curr->insert(new Node(cx, cy), 1);
}
}
curr->l++;
}
dfs(root);
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
504 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3002 ms |
2012 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3012 ms |
1860 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |