#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
const int mxN = 250002;
int n, k;
multiset<ll> path;
pll a[mxN];
bool solve(ll d){
set<pll> st;
for (int i = 1, j = 1; i <= n; i++){
while (a[i].first - a[j].first > d){
st.erase({a[j].second, a[j].first});
j++;
}
auto l = st.lower_bound({a[i].second - d, -1e10});
auto r = st.upper_bound({a[i].second + d, -1e10});
for (auto it = l; it != r; it++){
path.insert(max(abs((*it).second - a[i].first), abs((*it).first - a[i].second)));
if (path.size() > k){
path.erase(--path.end());
}
}
st.insert({a[i].second, a[i].first});
}
if (path.size() == k){
return true;
} else {
return false;
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
//xi + yi - (xj + yj) <= val
//xi - xj + yi - yj
//xi - yi - (xj - yj) <= val
//xi - xj + yj - yi <= val
for (int i = 1; i <= n; i++){
ll x, y; cin >> x >> y;
a[i].first = x + y;
a[i].second = x - y;
}
sort(a + 1, a + 1 + n);
ll lo = 1, hi = 5e9, ans = -1;
while (lo <= hi){
ll mid = lo + (hi - lo) / 2;
if (solve(mid)){
ans = mid;
hi = mid - 1;
} else {
lo = mid + 1;
}
path.clear();
}
solve(ans);
int c = 1;
for (auto &x : path){
cout << x << '\n';
if (c++ >= k){
break;
}
}
}
Compilation message
road_construction.cpp: In function 'bool solve(ll)':
road_construction.cpp:23:29: warning: comparison of integer expressions of different signedness: 'std::multiset<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
23 | if (path.size() > k){
| ~~~~~~~~~~~~^~~
road_construction.cpp:30:21: warning: comparison of integer expressions of different signedness: 'std::multiset<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
30 | if (path.size() == k){
| ~~~~~~~~~~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3056 ms |
14684 KB |
Output is correct |
2 |
Correct |
3296 ms |
14672 KB |
Output is correct |
3 |
Correct |
3115 ms |
14648 KB |
Output is correct |
4 |
Correct |
2770 ms |
14776 KB |
Output is correct |
5 |
Correct |
3293 ms |
13540 KB |
Output is correct |
6 |
Correct |
86 ms |
480 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10031 ms |
17248 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10028 ms |
5572 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
10028 ms |
5572 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3056 ms |
14684 KB |
Output is correct |
2 |
Correct |
3296 ms |
14672 KB |
Output is correct |
3 |
Correct |
3115 ms |
14648 KB |
Output is correct |
4 |
Correct |
2770 ms |
14776 KB |
Output is correct |
5 |
Correct |
3293 ms |
13540 KB |
Output is correct |
6 |
Correct |
86 ms |
480 KB |
Output is correct |
7 |
Execution timed out |
10059 ms |
14848 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3056 ms |
14684 KB |
Output is correct |
2 |
Correct |
3296 ms |
14672 KB |
Output is correct |
3 |
Correct |
3115 ms |
14648 KB |
Output is correct |
4 |
Correct |
2770 ms |
14776 KB |
Output is correct |
5 |
Correct |
3293 ms |
13540 KB |
Output is correct |
6 |
Correct |
86 ms |
480 KB |
Output is correct |
7 |
Execution timed out |
10031 ms |
17248 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |