#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define int long long
///* __ __ __ */
///* ====== _ /| /| __ _ / | | /| | @ | | | | / /| |\ | / | | @ | / */
///* \- || |_| |_ / |/ | | | |_ |- | |--| /-| | | \ \ |==| |- /=| | \ | | |--| | |- */
///* || | | |_ / | |__| _| |_ \__ | | / | |__ | __| | | | \ / | | \| \__ | | | | \ */
///*
typedef vector<int> vi;
typedef pair<int,int> pii;
typedef vector<pii> vii;
multiset<int> ans;
const int N = 3e5;
struct pt {
int x, y, id;
};
pt a[N];
int n, k;
bool cmp_x (const pt & a, const pt & b) {
return a.x < b.x || (a.x == b.x && a.y < b.y);
}
bool cmp_y (const pt & a, const pt & b) {
return a.y < b.y;
}
double mindist;
int ansa, ansb;
void upd_ans (const pt & a, const pt & b) {
double dist = abs(a.x-b.x) + abs(a.y-b.y);
ans.insert(dist);
while((int)ans.size()>k)ans.erase(ans.find(*--ans.end()));
if (dist < mindist)
mindist = dist, ansa = a.id, ansb = b.id;
}
void rec (int l, int r) {
if (r - l <= 3) {
for (int i=l; i<=r; ++i)
for (int j=i+1; j<=r; ++j)
upd_ans (a[i], a[j]);
sort (a+l, a+r+1, &cmp_y);
return;
}
int m = (l + r) >> 1;
int midx = a[m].x;
rec (l, m), rec (m+1, r);
static pt t[N];
merge (a+l, a+m+1, a+m+1, a+r+1, t, &cmp_y);
copy (t, t+r-l+1, a+l);
int tsz = 0;
for (int i=l; i<=r; ++i)
if (abs (a[i].x - midx) < mindist) {
for (int j=tsz-1; j>=0 && a[i].y - t[j].y < mindist; --j)
upd_ans (a[i], t[j]);
t[tsz++] = a[i];
}
}
void solve(){
cin >> n >> k;
if(n*n < 1e8){
vii v(n);
vi ans2;
for(auto &[i,j]:v)cin >> i >> j;
for(int i = 0; i < n; i++){
for(int j = i+1; j < n; j++){
ans2.pb(abs(v[i].ff-v[j].ff)+abs(v[i].ss-v[j].ss));
}
}sort(all(ans2));
for(int i = 0; i < k; i++)cout << ans2[i] << '\n';
return;
}
for (int i = 0; i < n; i++)
{
cin >> a[i].x >> a[i].y;
a[i].id = i;
}
sort (a, a+n, &cmp_x);
mindist = 1E20;
rec (0, n-1);
while((int)ans.size()>k)ans.erase(ans.find(*--ans.end()));
for(auto i:ans){
cout << i << '\n';
}
}
main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
int test = 1;
//~ cin >> test;
while(test--){
solve();
}
}
Compilation message
road_construction.cpp: In function 'void solve()':
road_construction.cpp:70:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
70 | for(auto &[i,j]:v)cin >> i >> j;
| ^
road_construction.cpp: At global scope:
road_construction.cpp:92:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
92 | main(){
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
9144 KB |
Output is correct |
2 |
Correct |
52 ms |
9148 KB |
Output is correct |
3 |
Correct |
33 ms |
7112 KB |
Output is correct |
4 |
Correct |
33 ms |
7184 KB |
Output is correct |
5 |
Correct |
50 ms |
7852 KB |
Output is correct |
6 |
Correct |
22 ms |
7120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
232 ms |
26224 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
111 ms |
13140 KB |
Output is correct |
2 |
Correct |
114 ms |
13164 KB |
Output is correct |
3 |
Correct |
1 ms |
2392 KB |
Output is correct |
4 |
Correct |
90 ms |
13172 KB |
Output is correct |
5 |
Correct |
96 ms |
13180 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
111 ms |
13140 KB |
Output is correct |
2 |
Correct |
114 ms |
13164 KB |
Output is correct |
3 |
Correct |
1 ms |
2392 KB |
Output is correct |
4 |
Correct |
90 ms |
13172 KB |
Output is correct |
5 |
Correct |
96 ms |
13180 KB |
Output is correct |
6 |
Incorrect |
113 ms |
13164 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
9144 KB |
Output is correct |
2 |
Correct |
52 ms |
9148 KB |
Output is correct |
3 |
Correct |
33 ms |
7112 KB |
Output is correct |
4 |
Correct |
33 ms |
7184 KB |
Output is correct |
5 |
Correct |
50 ms |
7852 KB |
Output is correct |
6 |
Correct |
22 ms |
7120 KB |
Output is correct |
7 |
Incorrect |
77 ms |
14672 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
9144 KB |
Output is correct |
2 |
Correct |
52 ms |
9148 KB |
Output is correct |
3 |
Correct |
33 ms |
7112 KB |
Output is correct |
4 |
Correct |
33 ms |
7184 KB |
Output is correct |
5 |
Correct |
50 ms |
7852 KB |
Output is correct |
6 |
Correct |
22 ms |
7120 KB |
Output is correct |
7 |
Incorrect |
232 ms |
26224 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |