poj 3273Monthly Expense Time Limit: 2000MS

Posted shenyuling

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3273Monthly Expense Time Limit: 2000MS相关的知识,希望对你有一定的参考价值。

Monthly Expense
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions:35346   Accepted: 13189

Description

Farmer John is an astounding accounting wizard and has realized he might run out of money to run the farm. He has already calculated and recorded the exact amount of money (1 ≤ moneyi ≤ 10,000) that he will need to spend each day over the next N (1 ≤ N ≤ 100,000) days.

FJ wants to create a budget for a sequential set of exactly M (1 ≤ M ≤ N) fiscal periods called "fajomonths". Each of these fajomonths contains a set of 1 or more consecutive days. Every day is contained in exactly one fajomonth.

FJ‘s goal is to arrange the fajomonths so as to minimize the expenses of the fajomonth with the highest spending and thus determine his monthly spending limit.

Input

Line 1: Two space-separated integers: N and M 
Lines 2..N+1: Line i+1 contains the number of dollars Farmer John spends on the ith day

Output

Line 1: The smallest possible monthly limit Farmer John can afford to live with.

Sample Input

7 5
100
400
300
100
500
101
400

Sample Output

500

Hint

If Farmer John schedules the months so that the first two days are a month, the third and fourth are a month, and the last three are their own months, he spends at most $500 in any month. Any other method of scheduling gives a larger minimum monthly limit.

Source

题意:就是将序列划分为k段,在所有符合要求的划分中 要求找出某段中最大的资金
思路:我们可以直到这个值必然在所有数中最大值maxn与所有数的总和sum之间,那么只要再这个区间进行二分即可
 
#include<stdio.h>
int a[100008];
int main()
{
    int n,m,i;
    int sum,maxn;
    while(~scanf("%d%d",&n,&m))
    {
        for(i=sum=maxn=0;i<n;i++)
        {
            scanf("%d",a+i);
            sum+=a[i];
            maxn= maxn<a[i]?a[i]:maxn;
        }
        while(maxn<sum)
        {
            int num=1,sum1=0,mid=(maxn+sum)>>1;//等价于除二 
            for(i=0;i<n;i++)
            {
                sum1+=a[i];
                if(sum1>mid)
                {
                    sum1=a[i];
                    num++;
                }
            }
            if(num<=m)//fajomonth数 < M,即 mid太大,分少了 
               sum=mid;
            else
               maxn=mid+1;// 
        }
        printf("%d
",maxn);
    } 
    return 0;
} 

 

以上是关于poj 3273Monthly Expense Time Limit: 2000MS的主要内容,如果未能解决你的问题,请参考以下文章

POJ3273-Monthly Expense-二分答案

poj3273 - Monthly Expense

poj3273---Monthly Expense

poj 3273Monthly Expense Time Limit: 2000MS

POJ 3273 :Monthly Expense二分

Monthly Expense POJ - 3273 (最大值最小化)(二分答案)