Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 13218 | Accepted: 5636 |
Description
Every year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. The excitement takes place on a long, straight river with a rock at the start and another rock at the end, L units away from the start (1 ≤ L ≤ 1,000,000,000). Along the river between the starting and ending rocks, N (0 ≤ N ≤ 50,000) more rocks appear, each at an integral distance Di from the start (0 < Di < L).
To play the game, each cow in turn starts at the starting rock and tries to reach the finish at the ending rock, jumping only from rock to rock. Of course, less agile cows never make it to the final rock, ending up instead in the river.
Farmer John is proud of his cows and watches this event each year. But as time goes by, he tires of watching the timid cows of the other farmers limp across the short distances between rocks placed too closely together. He plans to remove several rocks in order to increase the shortest distance a cow will have to jump to reach the end. He knows he cannot remove the starting and ending rocks, but he calculates that he has enough resources to remove up to M rocks (0 ≤ M ≤ N).
FJ wants to know exactly how much he can increase the shortest distance *before* he starts removing the rocks. Help Farmer John determine the greatest possible shortest distance a cow has to jump after removing the optimal set of M rocks.
Input
Lines 2..N+1: Each line contains a single integer indicating how far some rock is away from the starting rock. No two rocks share the same position.
Output
Sample Input
25 5 2 2 14 11 21 17
Sample Output
4
Hint
给定河的宽度以及n块石头到河岸一侧的距离。在去掉m块石头的情况下。问相邻两块石头或者相邻的河岸与石头之间距离的最小值。
二分搜索最大的最小距离,贪心验证
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
using namespace std;
int L,n,k;
int a[51000];
int flag;
int l,r;
bool ok(int x)//x代表最小间隔
{
int cnt=0;int p=a[0];//cnt代表能留下的石头
for(int i=1;i<=n;i++){
if(a[i]-p>=x){//只要距离大于等于给定距离就能留下
cnt++;
p=a[i];
}
}
return cnt>=n-k&&(a[n+1]-a[n]>=x);//最后一个石头上岸的距离要大于等与x
}
int main()
{
while(~scanf("%d%d%d",&L,&n,&k))
{
for(int i=1;i<=n;i++)scanf("%d",a+i);
a[n+1]=L;
sort(a+1,a+1+n);
l=0;r=a[n+1]-a[0]+1;
while(r-l>1)
{
int m=(l+r)>>1;
if(ok(m))l=m;
else r=m;
}
printf("%d\n",l);
}
return 0;
}