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

POJ 2456 Aggressive cows

时间:2018-05-12 18:23:01      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:test   gre   stream   turn   max   iostream   agg   return   ++   

二分答案+贪心

#include <iostream>
#include <algorithm>

using namespace std;

const int MAXN=100111;
const int INF=1034567890;

int N, M;
int Num[MAXN];
int Left, Right, Mid;

bool Test(int k){
    int l=M;
    for(int i=1, p=-k;i<=N;++i){
        if(Num[i]-p>=k){
            --l;p=Num[i];
        }
    }
    return l<=0;
}

int main(){
    ios_base::sync_with_stdio(false);
    
    while(cin >> N >> M){
        for(int i=1;i<=N;++i){
            cin >> Num[i];
        }
        sort(Num+1, Num+N+1);
        Left=0;Right=INF;
        while(Left<Right){
            Mid=(Left+Right)>>1;
            if(Test(Mid+1)) Left=Mid+1;
            else    Right=Mid;
        }
        Mid=(Left+Right)>>1;
        cout << Mid << endl;
    }
    
    return 0;
}

POJ 2456 Aggressive cows

标签:test   gre   stream   turn   max   iostream   agg   return   ++   

原文地址:https://www.cnblogs.com/Pickupwin/p/9029271.html

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