HYSBZ - 1734 二分

Farmer John has built a new long barn, with N (2 <= N <= 100,000) stalls. The stalls are located along a straight line at positions x1,…,xN (0 <= xi <= 1,000,000,000). His C (2 <= C <= N) cows don’t like this barn layout and become aggressive towards each other once put into a stall. To prevent the cows from hurting each other, FJ want to assign the cows to the stalls, such that the minimum distance between any two of them is as large as possible. What is the largest minimum distance?

农夫 John 建造了一座很长的畜栏,它包括N (2 <= N <= 100,000)个隔间,这些小隔间依次编号为x1,…,xN (0 <= xi <= 1,000,000,000). 但是,John的C (2 <= C <= N)头牛们并不喜欢这种布局,而且几头牛放在一个隔间里,他们就要发生争斗。为了不让牛互相伤害。John决定自己给牛分配隔间,使任意两头牛之间的最小距离尽可能的大,那么,这个最大的最小距离是什么呢

Input
Line 1: Two space-separated integers: N and C ;
Lines 2……N+1: Line i+1 contains an integer stall location, xi;
第一行:空格分隔的两个整数N(隔间数)和C(牛数)
第二行—第N+1行:i+1行指出了xi的位置(N个隔间的每个位置)

Output
Line 1: One integer: the largest minimum distance
第一行:一个整数:最大的最小值

Sample Input

5 3

1

2

8

4

9

Sample Output

3

Hint

把牛放在1,4,8这样最小距离是3(相对于放1 4 9,1 4 8中4到8的距离小于4到9的距离,因此是1 4 8)

题目解析:类似的最大化最小值或者最小化的问题,通常用二分搜索法就可以很好的解决
解题思路:(参考白书)

  1. 先对牛舍的位置进行排序
  2. 把第一头牛放入x0的牛舍
  3. 如果第i头牛放入了xj的话,那么第i+1头牛就必须放入xj+d<=xk的最小的xk中。
#include 
#include 
#include
#include 
using namespace std; 
#define INF 1e9 
int a[100000]; //存放牛舍的位置
int n,cows;
//0 1 2 3 4
//1 2 4 8 9
//1 4 8
int hahaha(int d) //传入mid,判断此时的最小距离是否可以放下所有的牛。
{    	int end,first,i;  
	first=0;  //标记第一只牛的位置
	for(i=1;i<cows;i++)  
	{   
		end=first+1;  //标记下一只牛的位置
		while(end<n&&a[end]-a[first]<d) end++;  
		//跳出该循环的情况只有两个,要么是end超过了n,要么是a[end]-a[first]>=d
		//如果a[end]-a[first]>=d,则该处可放下下一头牛,跳出循环后,更新first
		if(end==n) return 0;   //如果是end超过了n,则传入的d太大,代表放不下所有的牛
		first=end;  //更新first
	}  
	return 1; 
} 

int main()
{
	int i;
	int l,r,mid;
	int hahaha(int d);
	while(~scanf("%d%d",&n,&cows)) //输入牛舍数和牛数
	{
		for(i=0;i<n;i++)
			scanf("%d",&a[i]);	//输入
		sort(a,a+n);			//排序
  		l=0,r=INF;			//left和right指标	
		while(r-l>1)		//二分枚举最小距离的最大值
		{
   			mid=(r+l)/2;	
			if(hahaha(mid))l=mid;//mid符合条件,试试能不能继续缩
			else r=mid; //mid太大,需要缩小
		}	
		printf("%d\n",l); 
	}
	return 0;
}

你可能感兴趣的:(ACM题目)