#include <bits/stdc++.h>
//#define DEBUG 1106
#define int long long
#define ll long long
#define ld long double
#define pb push_back
#define p_q priority_queue
#define m_p make_pair
#define pii pair<int,int>
#define endl '\n'
#define INIT ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define FOR(i,a,b) for(int i = a; i <= b; i++)
#define forn(i,n) for (int i = 0; i < n; i++)
#define forn1(i,n) for (int i = 1; i <= n; i++)
#define all(x) x.begin(),x.end()
#define ft first
#define sd second
#define lowbit(x) (x&(-x))
#define chmax(x,y) x=max(x,y)
#define chmin(x,y) x=min(x,y)
#ifdef DEBUG
#define debug(x) cout << #x << ": " << x << endl;
#else
#define debug(x) 1106;
#endif
using namespace std;
const int N = 3e5+5;
const int inf = 1e9;
const int INF = 1e18;
const int MOD = 1e9+7;
int a[N];
signed main() {
//INIT
#ifdef DEBUG
freopen("input.txt", "r", stdin);
#endif
///////////
int n, k;
cin >> n >> k;
int t;
forn(i,n) cin >> a[i] >> t;
sort(a,a+n);
int lo = 0;
int hi = a[n-1]-a[0];
int ans = -1;
while (lo<=hi) {
int mid = (lo+hi)/2;
int t = 0;
forn(i,n-1) {
t += upper_bound(a+i+1,a+n,a[i]+mid)-(a+i+1);
}
//cout << "|| t: " << t << ", mid: " << mid << ", lo: " << lo << ", hi: " << hi << endl;
if(t<k) {
//ans = mid;
lo = mid+1;
} else {
ans = mid;
hi = mid-1;
}
//cout << "|| t: " << t << ", mid: " << mid << ", lo: " << lo << ", hi: " << hi << endl;
}
assert(ans!=-1);
//cout << '>' << ans << endl;
int x = ans;
vector<int> v;
forn(i,n) {
int j = i+1;
while(j<n && a[j]-a[i]<=x) {
v.pb(a[j]-a[i]);
j++;
}
}
sort(all(v));
forn(i,k) cout << v[i] << ' ';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
32 ms |
4804 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
318 ms |
5820 KB |
Output is correct |
2 |
Correct |
326 ms |
5820 KB |
Output is correct |
3 |
Correct |
31 ms |
4892 KB |
Output is correct |
4 |
Correct |
309 ms |
7876 KB |
Output is correct |
5 |
Correct |
265 ms |
7872 KB |
Output is correct |
6 |
Correct |
272 ms |
8640 KB |
Output is correct |
7 |
Correct |
285 ms |
7376 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
313 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
313 ms |
2648 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
32 ms |
4804 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
32 ms |
4804 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |