码迷,mamicode.com
首页 > 其他好文 > 详细

POJ2456 Aggressive cows (二分)

时间:2014-12-31 18:33:35      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:

http://poj.org/problem?id=2456


题意:

有n个牛舍,位置为xi,c头牛,把每头牛放在与其相邻牛的距离尽量远的牛舍,即最大化相邻两头牛之间的距离,求这个最大距离。


分析:

 二分答案,然后O(N)的复杂度判断符不符合。


代码如下:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;

const int maxn = 100010;

int n,c;
int x[maxn];

bool check(int dis)
{
    int pos=x[0],cnt=1;
    for(int i=1;i<n;i++){
        if(x[i]-pos>=dis){
            cnt++;
            pos=x[i];
        }
        if(cnt==c) return true;
    }
    return false;
}
int main()
{
    while(~scanf("%d%d",&n,&c)){
        for(int i=0;i<n;i++)
            scanf("%d",&x[i]);
        sort(x,x+n);
        int l=0,r=1000000000,mid;
        while(r-l>1){
            int mid=(l+r)/2;
            if(check(mid)) l=mid;
            else r=mid;
        }
        printf("%d\n",l);
    }
    return 0;
}



POJ2456 Aggressive cows (二分)

标签:

原文地址:http://blog.csdn.net/bigbigship/article/details/42296369

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!