POJ 3273 (二分)

题目链接:http://poj.org/problem?id=3273

题意:n个数据分成至多m块,要求顺序不能改变,求每块数据和的最大值。

要是直接穷举的话肯定会超时,数据比较大,但是可以考虑用二分去优化一下。

具体说不清,还是直接上代码吧。

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

const int INF=0x3f3f3f3f;
const int maxn=100010;
int n,m;
int a[maxn];

int main(){
#ifndef ONLINE_JUDGE
    freopen("test.in","r",stdin);
    freopen("test.out","w",stdout);
#endif
	while(~scanf("%d%d",&n,&m)){
		int low,high,mid;
		int max=-INF,sum=0,cnt;
		for(int i=1;i<=n;i++){
			scanf("%d",&a[i]);
			sum+=a[i];
			if(a[i]>max) max=a[i];
		}
		low=max,high=sum;
		while(low<high){
			mid=(low+high)>>1;
			sum=0,cnt=1;
			for(int i=0;i<n;i++){
				sum+=a[i];
				if(sum>mid){
					sum=a[i];
					cnt++;
				}
			}
			if(cnt<=m){
				max=mid;
				high=mid;
			}
			else
				low=mid+1;
		}
		printf("%d\n",max);
	}
	return 0;
}


你可能感兴趣的:(POJ 3273 (二分))