Convention

time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Cows from all over the world are arriving at the local airport to attend the convention and eat grass. Specifically, there are N cows arriving at the airport (1≤N≤105) and cow i arrives at time ti (0≤ti≤109). Farmer John has arranged M (1≤M≤105) buses to transport the cows from the airport. Each bus can hold up to C cows in it (1≤C≤N). Farmer John is waiting with the buses at the airport and would like to assign the arriving cows to the buses. A bus can leave at the time when the last cow on it arrives. Farmer John wants to be a good host and so does not want to keep the arriving cows waiting at the airport too long. What is the smallest possible value of the maximum waiting time of any one arriving cow if Farmer John coordinates his buses optimally? A cow’s waiting time is the difference between her arrival time and the departure of her assigned bus.

It is guaranteed that MC≥N.

Input
The first line contains three space separated integers N, M, and C. The next line contains N space separated integers representing the arrival time of each cow.

Output
Please write one line containing the optimal minimum maximum waiting time for any one arriving cow.

Example
inputCopy
6 3 2
1 1 10 14 4 3
outputCopy
4
思路:二分

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const ll M=1e5+10;
ll n,m,c,a[M];
int main(){
	cin>>n>>m>>c;
	for(ll i=0;i<n;i++) cin>>a[i];
	sort(a,a+n);
	ll l=0,r=1e9+10;
	while(r-l>1){
		ll mid=(l+r)>>1,ok=1,be=0;
		for(ll i=0;i<m;i++){
			ll t=0,j;
			for(j=be;j<n && j<be+c && a[j]-a[be]<=mid;j++);
			be=j;
			if(be==n)
				break;
//			printf("%lld\n",be);
		}
//		printf("%lld %lld\n",be,mid);
		if(be==n)
			r=mid;
		else 
			l=mid;
	}
	printf("%lld\n",r);
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值