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;
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

先看效果: https://renmaiwang.cn/s/jkhfz Hue系列产品将具备高度的个性化定制能力,并且借助内置红、蓝、绿三原色LED的灯泡,能够混合生成1600万种不同色彩的灯光。 整个操作流程完全由安装于iPhone上的应用程序进行管理。 这一创新举措为智能照明控制领域带来了新的启示,国内相关领域的从业者也积极投身于相关研究。 鉴于Hue产品采用WiFi无线连接方式,而国内WiFi网络尚未全面覆盖,本研究选择应用更为普及的蓝牙技术,通过手机蓝牙与单片机进行数据交互,进而产生可调节占空比的PWM信号,以此来控制LED驱动电路,实现LED的调光功能以及DIY调色方案。 本文重点阐述了一种基于手机蓝牙通信的LED灯设计方案,该方案受到飞利浦Hue智能灯泡的启发,但考虑到国内WiFi网络的覆盖限制,故而选用更为通用的蓝牙技术。 以下为相关技术细节的详尽介绍:1. **智能照明控制系统**:智能照明控制系统允许用户借助手机应用程序实现远程控制照明设备,提供个性化的调光及色彩调整功能。 飞利浦Hue作为行业领先者,通过红、蓝、绿三原色LED的混合,能够呈现1600万种颜色,实现了全面的定制化体验。 2. **蓝牙通信技术**:蓝牙技术是一种低成本、短距离的无线传输方案,工作于2.4GHz ISM频段,具备即插即用和强抗干扰能力。 蓝牙协议栈由硬件层和软件层构成,提供通用访问Profile、服务发现应用Profile以及串口Profiles等丰富功能,确保不同设备间的良好互操作性。 3. **脉冲宽度调制调光**:脉冲宽度调制(PWM)是一种高效能的调光方式,通过调节脉冲宽度来控制LED的亮度。 当PWM频率超过200Hz时,人眼无法察觉明显的闪烁现象。 占空比指的...
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值