CF604B.More Cowbell

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Kevin Sun wants to move his precious collection of nn cowbells from Naperthrill to Exeter, where there is actually grass instead of corn. Before moving, he must pack his cowbells into kk 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 ii -th ( 1<=i<=n1<=i<=n ) cowbell is an integer sis_{i} . In fact, he keeps his cowbells sorted by size, so si1<=sis_{i-1}<=s_{i} for any i>1 . Also an expert packer, Kevin can fit one or two cowbells into a box of size ss if and only if the sum of their sizes does not exceed ss . Given this information, help Kevin determine the smallest ss for which it is possible to put all of his cowbells into kk boxes of size ss .

输入格式

The first line of the input contains two space-separated integers nn and kk ( 1<=n<=2k<=1000001<=n<=2·k<=100000 ), denoting the number of cowbells and the number of boxes, respectively.

The next line contains nn space-separated integers s1,s2,...,sns_{1},s_{2},...,s_{n} ( 1<=s1<=s2<=...<=sn<=10000001<=s_{1}<=s_{2}<=...<=s_{n}<=1000000 ), the sizes of Kevin's cowbells. It is guaranteed that the sizes sis_{i} are given in non-decreasing order.

输出格式

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

输入输出样例

  • 输入#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{2,3} , 5{5} and 9{9} .

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

首页