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

数列分段II

时间:2019-06-09 22:26:39      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:++   tor   problem   数列   ble   printf   ons   algorithm   main   

题目链接

 

题意

一个序列分成连续的M段, 使其中和最大的一段和最小。

 

思路

答案显然具有单调性, 答案越大, 分的段数相对越少。

可以二分一个值, 然后以这个值当作答案看看能分几段, 如果段数比M多, 说明答案应该比这个值要大, 反之则更小。

(二分答案入门题啊)。。。

 

最好记一个二分答案模板。。李煜东大神的二分模板看不懂。。。

代码

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<map>
#include<cmath>
#include<cstdlib>
#include<ctime>
#include<queue>
using namespace std;

const int mx = 1e5 + 5;
const int inf = 1e9;

int n, m;
int a[mx];

inline bool check(int mid){
    int sum = 0, cnt = 0;
    for(int i = 1; i <= n; i++){
        if(sum+a[i] > mid){
            sum = a[i]; cnt++; continue;
        }
        sum += a[i];
    }
    return cnt >= m;
}

int main(){
    cin >> n >> m;
    int l = 0, r = 0;
    for(int i = 1; i <= n; i++) scanf("%d", &a[i]), l = max(l, a[i]), r += a[i];
    
    while(l <= r){
        int mid = (l+r)>>1;
        if(check(mid)) {
            l = mid+1;
        }
        else r = mid-1;
    }
    
    printf("%d\n", l);
    return 0;
}

 

数列分段II

标签:++   tor   problem   数列   ble   printf   ons   algorithm   main   

原文地址:https://www.cnblogs.com/Maktub-blog/p/10994936.html

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