1. 程式人生 > >P2884 [USACO07MAR]每月的費用Monthly Expense

P2884 [USACO07MAR]每月的費用Monthly Expense

using () pri bsp 輸入格式 HR name display lose

題目描述

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.

給出農夫在n天中每天的花費,要求把這n天分作m組,每組的天數必然是連續的,要求分得各組的花費之和應該盡可能地小,最後輸出各組花費之和中的最大值

輸入輸出格式

輸入格式:

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

輸出格式:

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

輸入輸出樣例

輸入樣例#1: 復制
7 5
100
400
300
100
500
101
400
輸出樣例#1: 復制
500

二分查找:
技術分享圖片
#include<cstdio>
 
#define max(a,b) (a>b?a:b) 
 
using namespace std;
int n,m[100009],k,l=0,r,mid,sum,maxx=-1;
bool judge(int x){
    int ans=1
,f=0; for(int i=1;i<=n;i++) { f+=m[i]; if(f==x) ans++,f=0; if(f>x){ ans++;f=0;f+=m[i]; } }if(ans<=k&&x>=maxx) return true; else return false; } int main() { scanf("%d%d",&n,&k); for(int i=1;i<=n;++i){ scanf("%d",&m[i]); sum+=m[i];maxx=max(maxx,m[i]); } r=sum; while(l<=r){ mid=(l+r)/2; if(judge(mid)==1) r=mid-1; else l=mid+1; }printf("%d",l); return 0; }
View Code

說明

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.

P2884 [USACO07MAR]每月的費用Monthly Expense