题目:https://www.luogu.org/problemnew/show/P1316
题意:
给定a个点的坐标(在一条直线上),现在要选b个点,问这b个点的最近距离的最大值是多少。
思路:
感觉数据量大的题目要大胆去考虑二分答案。
题目没有说给定的坐标有序,所以要先排个序。
然后二分答案,贪心的验证这个距离是不是可行的。
统计距离超过当前值的点有多少个,如果少于b说明取不到当前的答案。
这里不需要去考虑他们的最小值是不是刚好是当前值,因为最小值一定是大于等于当前答案的,如果不等于的化,那一定会在之后的二分过程中被更新。
贪心的原因是我们实际上是在选尽可能多的点满足他们之间的距离都大于当前答案。
#include<stdio.h>
#include<stdlib.h>
#include<map>
#include<set>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<vector>
#include<cmath>
#include<queue> #define inf 0x7fffffff
using namespace std;
typedef long long LL;
typedef pair<int, int> pr; int a, b;
const int maxn = 1e5 + ;
LL pos[maxn]; bool check(LL x)
{
//int dis = inf;
int pre = , cnt = ;
for(int i = ; i <= a; i++){
if(pos[i] - pos[pre] >= x){
//dis = min(dis, pos[i] - pos[pre]);
pre = i;
cnt++;
}
//if(cnt == b)break;
}
if(cnt < b){
return false;
}
else return true;
} int main()
{
scanf("%d%d", &a, &b);
for(int i = ; i <= a; i++){
scanf("%lld", &pos[i]);
}
sort(pos + , pos + + a);
//for(int i = 1; i <= a; i++)cout<<pos[i]<<" ";
//cout<<endl; LL st = , ed = pos[a] - pos[], ans;
while(st <= ed){
LL mid = (st + ed) / ;
if(check(mid)){
ans = mid;
//ans = max(ans, mid);
st = mid + ;
}
else{
ed = mid - ;
}
}
printf("%lld\n", ans);
return ;
}