| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 24397 | Accepted: 9484 |
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
Lines 2.. N+1: Line i+1 contains the number of dollars Farmer John spends on the ith day
Output
Sample Input
7 5 100 400 300 100 500 101 400
Sample Output
500
Hint
Source
题目意思:
解题思路:
#include<iostream>
#include<cstdio>
#include<iomanip>
#include<cmath>
#include<cstdlib>
#include<cstring>
#include<map>
#include<algorithm>
using namespace std;
#define MAXN 100000
int a[MAXN];
int n,m,high=0,low=-1,mid;
bool solve()
{
int res=1,sum=0;
for(int i=0; i<n; ++i)
{
sum+=a[i];//若干月花费总和
if(sum>=mid)//超过限额
{
++res;//分组数目
if(sum==mid) sum=0;//当前月花费计入当前组
else sum=a[i];//当前月花费计入下一组
if(i==n-1) --res;//最后一个月刚好被计入最后一组
}
}
if(res>m) return false;
else return true;
}
int main()
{
#ifdef ONLINE_JUDGE
#else
freopen("F:/cb/read.txt","r",stdin);
//freopen("F:/cb/out.txt","w",stdout);
#endif
ios::sync_with_stdio(false);
cin.tie(0);
cin>>n>>m;
for(int i=0; i<n; ++i)
{
cin>>a[i];
if(a[i]>low) low=a[i];//最高的单月花费
high+=a[i];//所有花费之和
}
while(low<high)
{
mid=0.5*(low+high);
if(solve()) high=mid-1;
else low=mid+1;
}
cout<<low<<endl;
return 0;
}
/*
7 5
100
400
300
100
500
101
400
*/

本文介绍了一种通过二分查找法来解决预算划分问题的算法。该算法的目标是在给定连续天数的开支记录下,将这些天数划分为指定数量的连续区间(即“fajomonths”),使得每个区间内的开支总和最大值最小。文中详细解释了算法的实现过程,并提供了完整的C++代码示例。
3万+

被折叠的 条评论
为什么被折叠?



