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

[Gym-102346M] 二分答案

时间:2019-11-03 00:58:00      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:space   c++   ref   span   turn   一个   ble   题目   nbsp   

https://vjudge.net/problem/Gym-102346M

 

一般来说, 若题目要求输出一个确定的数( 比如最小天数,最大个数之类 ),用二分来枚举答案试试。

 

#include <bits/stdc++.h>
using namespace std;

const int maxn = 1e5+500;
int a[maxn];
int n,t,c;

int check(long long tim){
    int cnt=1;
    long long now=0;
    long long tot = tim*c;
    for(int i=1; i<=n; i++){
        if(tot < a[i]) return t+1;
        if(now + a[i] <= tot ){
            now += a[i];
        }
        else{
            now = a[i];
            cnt++;
        }
    }
    if( now > tot) return t+1;
    return cnt;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>n>>t>>c;
    long long sum=0;
    for(int i=1; i<=n; i++){
        cin>>a[i];
        sum += a[i];
    }
    long long l=1,r=sum;
    long long mid,ans=sum;
    while(l<=r){
        mid = (l+r)>>1;
        if( check(mid)>t ){
            l = mid+1;
        }
        else{
            ans = mid;    //这个很重要
            r = mid-1;
        }
    }
    cout<<ans<<endl;
    return 0;
}

 

[Gym-102346M] 二分答案

标签:space   c++   ref   span   turn   一个   ble   题目   nbsp   

原文地址:https://www.cnblogs.com/-Zzz-/p/11784882.html

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