#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define int ll
#define ld long double
#define pii pair<int, int>
#define f first
#define s second
#define boost() cin.tie(0), cin.sync_with_stdio(0)
const int MN = 250005;
int n, k;
pii a[MN];
int cost(pii p, pii q) {
return abs(p.f - q.f) + abs(p.s - q.s);
}
int32_t main() {
boost();
cin >> n >> k;
for (int i = 1; i <= n; i++) cin >> a[i].f >> a[i].s;
vector<int> v;
for (int i = 1; i <= n; i++) {
for (int j = i + 1; j <= n; j++) {
v.push_back(cost(a[i], a[j]));
}
}
sort(v.begin(), v.end());
for (int i = 1; i <= k; i++) printf("%lld\n", v[i - 1]);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
81 ms |
6976 KB |
Output is correct |
2 |
Correct |
82 ms |
6984 KB |
Output is correct |
3 |
Correct |
58 ms |
5048 KB |
Output is correct |
4 |
Correct |
57 ms |
5060 KB |
Output is correct |
5 |
Correct |
74 ms |
5812 KB |
Output is correct |
6 |
Correct |
24 ms |
4560 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1998 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1879 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1879 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
81 ms |
6976 KB |
Output is correct |
2 |
Correct |
82 ms |
6984 KB |
Output is correct |
3 |
Correct |
58 ms |
5048 KB |
Output is correct |
4 |
Correct |
57 ms |
5060 KB |
Output is correct |
5 |
Correct |
74 ms |
5812 KB |
Output is correct |
6 |
Correct |
24 ms |
4560 KB |
Output is correct |
7 |
Runtime error |
1764 ms |
2097156 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
81 ms |
6976 KB |
Output is correct |
2 |
Correct |
82 ms |
6984 KB |
Output is correct |
3 |
Correct |
58 ms |
5048 KB |
Output is correct |
4 |
Correct |
57 ms |
5060 KB |
Output is correct |
5 |
Correct |
74 ms |
5812 KB |
Output is correct |
6 |
Correct |
24 ms |
4560 KB |
Output is correct |
7 |
Runtime error |
1998 ms |
2097156 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |