POJ 3273 Monthly Expense 【二分查找】

本文介绍了一个经典的预算划分问题,目标是将一系列连续的日花费数据划分成指定数量的区间(fajomonths),使得这些区间中最高花费的那个月份的开销最小。文章详细解释了如何使用二分查找算法来解决这个问题,并提供了完整的代码实现。

 

 

Monthly Expense

Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 14158 Accepted: 5697

 

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

USACO 2007 March Silver

 

 

 

题意: 给n个数分成m个区间,区间内的数字必须与原来的数组顺序一致,个个区间的数字加起来的总和有一个区间是最大的,怎么划分才能使这个最大值是最小的;

思路: 左值 是数组中最大的那个值,右值是所有数组的总和,所要求的数就在这两个值得中间,通过二分查找来求出答案;确定二分的左右值,还有一个关键的就是二分查找过程中,是 right = mid 还是 left = mid; 要分成 m个区间,实际就是在数组中切 m - 1 刀,我们从第一个开始累加,直到这个总数大于 mid ,则总数归零,继续累加下一个区间,每完成一个区间的累加就让 cnt 计数一次,如果到最后,cnt(就是切的刀数) > m - 1 则说明这个mid 小了,反之则大了,通过这个来判断 mid 是赋值给right 还是left ,下面给出代码:

 

#include<iostream>
#include<string>
#include<map>
#include<cstdlib>
#include<queue>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn = 1e6+10;

long long a[maxn];
int n,m;

bool check(long long mid_) {
    long long sum_ = 0,cnt;
    for(int i = 0 ; i < n; ++i) {
        sum_+=a[i];
        if(sum_ > mid_) {
            sum_ = 0;
            i--;
           cnt++;
        }
    }
    //判定刀数
    if(cnt  > m - 1) return false;
    else return true;
}
int main(void)
{
    while(scanf("%d%d",&n,&m)!=EOF) {
            long long sum = 0,num_max = 0;
            for(int i = 0 ; i < n ; ++i) {
                scanf("%lld",&a[i]);
               if(num_max < a[i]) num_max = a[i];
               sum+=a[i];
            }
          long long le = num_max,ri = sum,mid;
          while(le < ri) {
                mid = (le + ri)/2;
                if(check(mid)) ri = mid - 1;
                else le = mid + 1;
          }
        printf("%d\n",le);
    }
    return 0;
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

【重要提示】本资源设置为0积分下载,若非0积分请勿轻易下载 亲爱的CSDN用户: 首先感谢你点进这个资源页面。我需要提前说明一个重要情况: 本资源原本已设置为“0积分下载”,即作者希望完全免费共享。但CSDN平台有时会根据文件的下载热度、文件大小、用户权限等因素,自动将部分资源的积分调整为非0数值(如1积分、2积分、5积分等)。这是平台系统的自动行为,而非作者本人的设定。 因此,如果你当前看到该资源的下载所需积分不是0(例如显示为1、2、3……),请谨慎决定是否下载。 如果你按照非0积分支付并下载后发现资源内容不符合预期、链接失效,或者实际上该资源本应是免费的,作者无法为此承担积分损失或退还操作。强烈建议:仅在页面显示为0积分时进行下载。 另外,本资源描述中并未直接提供具体的下载地址或外部链接,因为它本身是一个通过CSDN官方上传通道提交的文件/内容包。如果你看到描述中没有外部网盘地址,这是正常的——资源文件应通过CSDN内置的“下载”按钮获取。若因平台积分显示异常导致你支付了积分,请优先联系CSDN客服咨询积分退还政策,作者没有权限修改平台自动设定的积分值。 感谢你的理解与支持。技术分享本应开放,但受限于平台规则,特此提醒如上。祝学习进步!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值