#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <queue>
#include <set>
#define pii pair<int, int>
#define piii pair<int, pii>
#define pll pair<long long, long long>
#define plll pair<long long, pll>
#define tiii tuple<int, int, int>
#define tiiii tuple<int, int, int, int>
#define ff first
#define ss second
#define ee ss.ff
#define rr ss.ss
#define DEBUG
using namespace std;
const int INF = (int)2e9 + 7;
struct Node
{
int x;
int l, r;
}seg[30202020];
int cnt = 0;
int init(int s, int e)
{
int ind = cnt++;
seg[ind].x = 0;
if(s + 1 == e) return ind;
int mid = s + e >> 1;
seg[ind].l = init(s, mid);
seg[ind].r = init(mid, e);
return ind;
}
int upd(int nd, int s, int e, int pos)
{
int ind = cnt++;
seg[ind] = seg[nd];
if(s + 1 == e)
{
++seg[ind].x;
return ind;
}
int mid = s + e >> 1;
if(pos < mid) seg[ind].l = upd(seg[ind].l, s, mid, pos);
else seg[ind].r = upd(seg[ind].r, mid, e, pos);
seg[ind].x = seg[seg[ind].l].x + seg[seg[ind].r].x;
return ind;
}
int qr(int ind, int s, int e, int l, int r)
{
if(e <= l || r <= s) return 0;
if(l <= s && e <= r) return seg[ind].x;
int mid = s + e >> 1;
return qr(seg[ind].l, s, mid, l, r) + qr(seg[ind].r, mid, e, l, r);
}
vector<int> V;
void qry(int ind, int s, int e, int l, int r)
{
if(e <= l || r <= s || !seg[ind].x) return;
if(s + 1 == e) { V.push_back(s); return; }
int mid = s + e >> 1;
qry(seg[ind].l, s, mid, l, r);
qry(seg[ind].r, mid, e, l, r);
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, k; cin >> n >> k;
pii A[n]; for(auto &i : A) cin >> i.ff >> i.ss;
pii B[n], C[n];
for(int i = 0; i < n; ++i) B[i] = {A[i].ff + A[i].ss, i}, C[i] = {A[i].ff - A[i].ss, i};
sort(B, B + n);
sort(C, C + n);
int X[n], Y[n];
for(int i = 0; i < n; ++i) X[i] = B[i].ff, Y[i] = C[i].ff;
int P[n]; for(int i = 0; i < n; ++i) P[B[i].ss] = i;
int Q[n]; for(int i = 0; i < n; ++i) Q[i] = P[C[i].ss];
int root[n + 1];
root[0] = init(0, n);
for(int i = 0; i < n; ++i) root[i + 1] = upd(root[i], 0, n, Q[i]);
int s = 0, e = INF;
while(s + 1 < e)
{
int mid = s + e >> 1;
long long ans = 0;
for(int i = 0; i < n; ++i)
{
int x = lower_bound(Y, Y + n, (int)max((long long)Y[i] - mid, (long long)-INF)) - Y;
int y = upper_bound(Y, Y + n, (int)min((long long)Y[i] + mid, (long long)INF)) - Y;
int l = lower_bound(X, X + n, (int)max((long long)X[Q[i]] - mid, (long long)-INF)) - X;
int r = upper_bound(X, X + n, (int)min((long long)X[Q[i]] + mid, (long long)INF)) - X;
ans += qr(root[y], 0, n, l, r) - qr(root[x], 0, n, l, r);
}
if(ans < n + 2 * k) s = mid;
else e = mid;
}
cout << e;
}
Compilation message
road_construction.cpp: In function 'int init(int, int)':
road_construction.cpp:37:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | int mid = s + e >> 1;
| ~~^~~
road_construction.cpp: In function 'int upd(int, int, int, int)':
road_construction.cpp:53:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
53 | int mid = s + e >> 1;
| ~~^~~
road_construction.cpp: In function 'int qr(int, int, int, int, int)':
road_construction.cpp:65:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
65 | int mid = s + e >> 1;
| ~~^~~
road_construction.cpp: In function 'void qry(int, int, int, int, int)':
road_construction.cpp:74:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
74 | int mid = s + e >> 1;
| ~~^~~
road_construction.cpp: In function 'int main()':
road_construction.cpp:102:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
102 | int mid = s + e >> 1;
| ~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10093 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5129 ms |
72568 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10047 ms |
72532 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10047 ms |
72532 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10093 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10093 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |