A10109 | More Cowbell
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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<=i<=n$ ) cowbell is an integer $s_{i}$ . In fact, he keeps his cowbells sorted by size, so $s_{i-1}<=s_{i}$ 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$ .
Kevin is a meticulous cowbell collector and knows that the size of his $i$ -th ( $1<=i<=n$ ) cowbell is an integer $s_{i}$ . In fact, he keeps his cowbells sorted by size, so $s_{i-1}<=s_{i}$ 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$ .
输入格式
The first line of the input contains two space-separated integers $n$ and $k$ ( $1<=n<=2·k<=100000$ ), denoting the number of cowbells and the number of boxes, respectively.
The next line contains $n$ space-separated integers $s_{1},s_{2},...,s_{n}$ ( $1<=s_{1}<=s_{2}<=...<=s_{n}<=1000000$ ), the sizes of Kevin's cowbells. It is guaranteed that the sizes $s_{i}$ are given in non-decreasing order.
The next line contains $n$ space-separated integers $s_{1},s_{2},...,s_{n}$ ( $1<=s_{1}<=s_{2}<=...<=s_{n}<=1000000$ ), the sizes of Kevin's cowbells. It is guaranteed that the sizes $s_{i}$ are given in non-decreasing order.
输出格式
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$ .
输入输出样例
输入 #1
2 1 2 5
输出 #1
7
输入 #2
4 3 2 3 5 9
输出 #2
9
输入 #3
3 2 3 5 7
输出 #3
8
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}$ .
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}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted