其他分享
首页 > 其他分享> > Aggressive cows

Aggressive cows

作者:互联网

描述
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?
输入

#include <iostream>
#include <algorithm>
using namespace std;
int n,k;
int a[100000+5],b[ 100000+5];
int fun(int m)
{
	int cnt=0;
	while(m)
	{
		if(m%2) cnt++;
		m>>=1;
	}
	return cnt;
}
int judge(int m)
{
	int cnt=1,temp=a[0];//第一个位置有牛 
	for(int i=1;i<n;i++)
	{
		if(a[i]-temp>=m) 
		{
			temp=a[i];
			cnt++;
		}
	}
	if(cnt>=k) return 1;
	else return 0;
}
void solve()
{
	int l=0,r=a[n-1]-a[0];//距离 
	while(l<=r)
	{
		int mid=l+(r-l)/2;
		if(judge(mid))  l=mid+1;
		else r=mid-1;
	} 
	cout<<l-1<<endl; 
	return ;
}
int main()
{
	while(cin>>n>>k)
	{
		for(int i=0;i<n;i++) cin>>a[i];
		sort(a,a+n);
		solve();
	}
	return 0;
} 

标签:cnt,return,int,cows,integer,Aggressive,include,Line
来源: https://blog.csdn.net/m0_43382549/article/details/96098935