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.
 
简述:给出长度n的数组以及m,求分成m段且每段和最小的和。
思路:可以贪心验证,这个最小和是单调的,可以二分搜索,代码如下:
const int maxm = ;
const int INF = 0x7fffffff; int n, buf[maxm], m; bool check(int d) {
int sum = , now = buf[];
for (int i = ; i < n; ++i) {
if(now + buf[i] <= d)
now += buf[i];
else {
now = buf[i];
++sum;
}
}
return sum <= m;
} int main() {
int l = -INF, r = , mid;
scanf("%d%d", &n, &m);
for(int i = ; i < n; ++i) {
scanf("%d", &buf[i]);
l = max(l, buf[i]);
r += buf[i];
}
while(l <= r) {
mid = (l + r) >> ;
if(check(mid))
r = mid - ;
else
l = mid + ;
}
printf("%d\n", l);
return ;
}

最新文章

  1. fillStyle图片填充
  2. Java读带有BOM的UTF-8文件乱码原因及解决方法
  3. 成功进行了一次UDP打洞
  4. 使用Javascript实现返回顶部功能。
  5. Amazon Web Services
  6. MAC自带的SVN进行升级
  7. jdk5下载链接
  8. Highcharts-3.0.6
  9. iOS 创建上线证书
  10. maven_基本配置
  11. 为Android增加硬件抽象层(HAL)模块访问Linux内核驱动程序
  12. Spring学习(22)--- AOP之Advice应用(下)
  13. 算法训练 K好数
  14. File文件的读写操作RandomAccessFile类
  15. ;html5斜体字
  16. Intellij IDEA常用快捷键介绍 Intellij IDEA快捷键大全汇总
  17. 2. github创建 git仓库,克隆,拉取和推送操作(所有的git命令前提是一定在当前项目目录下)
  18. 电子商务(电销)平台中订单模块(Order)数据库设计明细(转)
  19. react+mobx 编写 Async装饰器
  20. 人脸识别准备 -- 基于raspberry pi 3b + movidius

热门文章

  1. 201771010135杨蓉庆《面向对象程序设计(java)》第四周学习总结
  2. Mysql 一些细节方面解析(一)--MyISAM和InnoDB的主要区别和应用场景
  3. ajax的XmlHttpRequest对象常用方法
  4. redis在Windows上启动报错
  5. vue 之 axios Vue路由与element-UI
  6. 牛客网Sql
  7. 金币(0)&lt;P2015_1&gt;
  8. VM player无法联网问题
  9. PCF8591 AD/DA模块使用详解
  10. 五、linux基础-shell机制