| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 4839 | Accepted: 2104 |
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
Source
#include <stdio.h>
#include <string.h>
#include <math.h>
int a[50010],b[50010],l,r,n,m,g,flag;
int cmp(const void *e, const void *f)
{
return (*(int *)e-*(int *)f);
}
int main()
{
int binary_search();
int i,j,s,t;
while(scanf("%d %d %d",&n,&m,&g)!=EOF)
{
a[0]=0;
for(i=1;i<=m;i++)
{
scanf("%d",&a[i]);
}
a[m+1]=n;
qsort(a,m+2,sizeof(a[0]),cmp);
r=l=n;
for(i=1;i<=m+1;i++)
{
if(a[i]-a[i-1]<l)
{
l=a[i]-a[i-1];
}
}
t=binary_search();
printf("%d\n",t);
}
return 0;
}
int check(int mid)
{
int i,j,s;
b[0]=a[0];
for(i=1,j=1,s=0;i<=m;i++)
{
if(a[i]-b[j-1]>=mid)
{
b[j++]=a[i];
}else
{
s++;
}
}
for(i=j-1;i>=0;i--)
{
if((a[m+1]-b[i])<mid)
{
s++;
}
}
flag++;
if(s>g)
{
return 0;
}else
{
return 1;
}
}
int binary_search()
{
int mid,t,res=-1;
flag=0;
while(l<r)
{
mid=(l+r)/2;
flag++;
t=check(mid);
if(!t)
{
r=mid-1;
}else
{
l=mid+1;
if(res<mid)
{
res=mid;
}
}
}
t=check(l);
if(t==1&&res<l)
{
res=l;
}
return res;
}
本文探讨了RiverHopscotch问题的解决方案,该问题是关于如何通过移除一定数量的石头来最大化跳跃距离的问题。核心是使用排序加二分查找的方法找到最优解。
531

被折叠的 条评论
为什么被折叠?



