博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CodeForces 604B】F - 一般水的题1-More Cowbe
阅读量:6987 次
发布时间:2019-06-27

本文共 2109 字,大约阅读时间需要 7 分钟。

Description

Kevin Sun wants to move his precious collection of n cowbells from Naperthrill to Exeter, where there is actually grass instead of corn. Before moving, he must pack his cowbells into k boxes of a fixed size. In order to keep his collection safe during transportation, he won't place more than two cowbells into a single box. Since Kevin wishes to minimize expenses, he is curious about the smallest size box he can use to pack his entire collection.

Kevin is a meticulous cowbell collector and knows that the size of his i-th (1 ≤ in) cowbell is an integer si. In fact, he keeps his cowbells sorted by size, so si - 1si for any i > 1. Also an expert packer, Kevin can fit one or two cowbells into a box of size s if and only if the sum of their sizes does not exceed s. Given this information, help Kevin determine the smallest s for which it is possible to put all of his cowbells into k boxes of size s.

Input

The first line of the input contains two space-separated integers n and k (1 ≤ n ≤ 2·k ≤ 100 000), denoting the number of cowbells and the number of boxes, respectively.

The next line contains n space-separated integers s1, s2, ..., sn (1 ≤ s1s2 ≤ ... ≤ sn ≤ 1 000 000), the sizes of Kevin's cowbells. It is guaranteed that the sizes si are given in non-decreasing order.

Output

Print a single integer, the smallest s for which it is possible for Kevin to put all of his cowbells into k boxes of size s.

Sample Input

Input
2 1
2 5
Output
7
Input
4 3
2 3 5 9
Output
9
Input
3 2
3 5 7
Output
8

Hint

In the first sample, Kevin must pack his two cowbells into the same box.

In the second sample, Kevin can pack together the following sets of cowbells: {2, 3}, {5} and {9}.

In the third sample, the optimal solution is {3, 5} and {7}.

题意是给n个牛铃和k个箱子,每个箱子可以装1~2个牛铃,每个牛铃大小不同,所有箱子都是s容量,求最小的s可以装所有的牛铃。

贪心,读入的数据已经排好,将k个牛铃放进k个箱子,每个箱子一个,那么还有n-k个牛铃必须放到已经装有1个的箱子里,那么就有n-k个箱子是装两个的。我们让只装一个牛铃的箱子尽量装大的,要装两个的箱子,装最小的(n-k)*2个里面最大的和最小的,第二大和第二小……

#include
#include
using namespace std;long long n,k,s[100005],maxs;int main(){ scanf("%lld%lld",&n,&k); for(long long i=0;i

 

转载地址:http://pqwvl.baihongyu.com/

你可能感兴趣的文章
一篇文章搞懂 Activity 启动模式
查看>>
你不知道的 Electron (二):了解 Electron 打包
查看>>
Flexbox Guide
查看>>
听说你精通原生JavaScript,来试试这份题目吧
查看>>
蚂蚁金服自主研发的三地五中心异地多活解决方案获金融科技创新大奖
查看>>
junit测试之第三方组件mock
查看>>
sitemesh的script提取
查看>>
玩转iOS开发:iOS 11 新特性《UICollectionView的拖放》
查看>>
原来 JS 还存在这样的拆箱转换
查看>>
读书笔记 | 《Think in Java》Ⅶ 复用类
查看>>
基于比特币现金BCH二层网络能实现区块链2.0以太坊的智能化吗?
查看>>
Android显示框架:Android应用视图的管理者Window
查看>>
[译] JavaScript 如何工作:对引擎、运行时、调用堆栈的概述
查看>>
将 Intent 序列化,像 Uri 一样传递 Intent!!!
查看>>
Vue教程02:v-model、v-text、v-html
查看>>
App Store 狠抓精神文明建设,JSPatch要亡了?
查看>>
专注数据,打造阿里云Elasticsearch“一站式”数据服务体系
查看>>
一文读懂前端缓存
查看>>
script中defer和async的区别
查看>>
Jenkins+Git+Walle+AndResGuard打造Android多渠道打包系统
查看>>