#include <bits/stdc++.h>
using namespace std;
#define lli long long int
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define test(x) cout << "Line(" << __LINE__ << ") " #x << ' ' << x << endl
#define printv(x) {\
for (auto i : x) cout << i << ' ';\
cout << endl;\
}
#define pii pair <int, int>
#define pll pair <lli, lli>
#define X first
#define Y second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
template<typename A, typename B>
ostream& operator << (ostream& o, pair<A, B> a){
return o << a.X << ' ' << a.Y;
}
template<typename A, typename B>
istream& operator >> (istream& o, pair<A, B> &a){
return o >> a.X >> a.Y;
}
const int mod = 1e9 + 7, abc = 864197532, N = 300001, K = 111;
struct Pt {
lli x, y, idx;
Pt (lli _x = 0, lli _y = 0) : x(_x), y(_y) {}
bool operator < (const Pt &o) const {
return x < o.x;
}
};
struct cmp {
bool operator () (const Pt &a, const Pt &b) const {
if (a.y == b.y) return a.idx < b.idx;
return a.y < b.y;
}
};
int bit[N];
void reset() {
for (int i = 0; i < N; ++i) bit[i] = 0;
}
void add(int p, int v) {
for (int i = p; i < N; i += i & (-i)) bit[i] += v;
}
int query(int p) {
int ans = 0;
for (int i = p; i > 0; i -= i & (-i)) ans += bit[i];
return ans;
}
int main () {
ios::sync_with_stdio(false);
cin.tie(0);
int n, k;
cin >> n >> k;
vector <Pt> a;
for (int i = 0, x, y; i < n; ++i) {
cin >> x >> y;
a.pb(Pt(x + y, x - y));
a.back().idx = i;
}
vector <lli> y_idx;
for (int i = 0; i < n; ++i) y_idx.pb(a[i].y);
sort(all(y_idx));
y_idx.resize(unique(all(y_idx)) - y_idx.begin());
auto get = [&](lli x) {
return lower_bound(all(y_idx), x) - y_idx.begin() + 5;
};
sort(all(a));
auto chk = [&](lli d) {
/*
* 2 4 8 9 15
* 4 9
*/
reset();
lli ans = 0;
for (int i = 0, j = 0; i < n; ++i) {
while (j < n && a[j].x + d < a[i].x) add(get(a[j++].y), -1);
ans += query(get(a[i].y + d + 1) - 1) - query(get(a[i].y - d) - 1);
add(get(a[i].y), 1);
}
return ans;
};
lli l = 0, r = 2e9 + 87;
while (r - l > 1) {
((chk(l + r >> 1)) < k ? l : r) = l + r >> 1;
}
int d = l;
l = 0, r = 2e9 + 87;
while (r - l > 1) {
((chk(l + r >> 1)) >= k ? r : l) = l + r >> 1;
}
vector <int> ans;
set <Pt, cmp> s;
for (int i = 0, j = 0; i < n; ++i) {
while (j < n && a[j].x + d < a[i].x) s.erase(a[j++]);
for (auto it = s.lower_bound(Pt(0, a[i].y - d)); it != s.end() && it->y <= a[i].y + d; ++it) {
ans.pb(max(a[i].x - it->x, abs(it->y - a[i].y)));
}
s.insert(a[i]);
}
sort(all(ans));
for (int i = 0; i < k; ++i) {
if (i < ans.size()) cout << ans[i] << '\n';
else cout << r << '\n';
}
}
Compilation message
road_construction.cpp: In function 'int main()':
road_construction.cpp:94:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
94 | ((chk(l + r >> 1)) < k ? l : r) = l + r >> 1;
| ~~^~~
road_construction.cpp:94:45: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
94 | ((chk(l + r >> 1)) < k ? l : r) = l + r >> 1;
| ~~^~~
road_construction.cpp:99:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
99 | ((chk(l + r >> 1)) >= k ? r : l) = l + r >> 1;
| ~~^~~
road_construction.cpp:99:46: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
99 | ((chk(l + r >> 1)) >= k ? r : l) = l + r >> 1;
| ~~^~~
road_construction.cpp:112:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
112 | if (i < ans.size()) cout << ans[i] << '\n';
| ~~^~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
5176 KB |
Output is correct |
2 |
Correct |
80 ms |
5200 KB |
Output is correct |
3 |
Incorrect |
68 ms |
5028 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4631 ms |
13676 KB |
Output is correct |
2 |
Correct |
4608 ms |
13552 KB |
Output is correct |
3 |
Correct |
62 ms |
5092 KB |
Output is correct |
4 |
Correct |
4726 ms |
13288 KB |
Output is correct |
5 |
Correct |
4608 ms |
13548 KB |
Output is correct |
6 |
Correct |
4634 ms |
13544 KB |
Output is correct |
7 |
Correct |
4550 ms |
12784 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10018 ms |
11300 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
10018 ms |
11300 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
5176 KB |
Output is correct |
2 |
Correct |
80 ms |
5200 KB |
Output is correct |
3 |
Incorrect |
68 ms |
5028 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
5176 KB |
Output is correct |
2 |
Correct |
80 ms |
5200 KB |
Output is correct |
3 |
Incorrect |
68 ms |
5028 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |