UOJ Logo 黑暗爆炸OJ

DARKBZOJ

#1737. [Usaco2005 jan]Naptime 午睡时间

统计 下载数据

Description

Goneril is a very sleep-deprived cow. Her day is partitioned into N (3 <= N <= 3,830) equal time periods but she can spend only B (2 <= B < N) not necessarily contiguous periods in bed. Due to her bovine hormone levels, each period has its own utility U_i (0 <= U_i <= 200,000), which is the amount of rest derived from sleeping during that period. These utility values are fixed and are independent of what Goneril chooses to do, including when she decides to be in bed. With the help of her alarm clock, she can choose exactly which periods to spend in bed and which periods to spend doing more critical items such as writing papers or watching baseball. However, she can only get in or out of bed on the boundaries of a period. She wants to choose her sleeping periods to maximize the sum of the utilities over the periods during which she is in bed. Unfortunately, every time she climbs in bed, she has to spend the first period falling asleep and gets no sleep utility from that period. The periods wrap around in a circle; if Goneril spends both periods N and 1 in bed, then she does get sleep utility out of period 1. What is the maximum total sleep utility Goneril can achieve?

贝茜是一只非常缺觉的奶牛.她的一天被平均分割成N段(3≤N≤3830),但是她要用其中的B段时间(2≤B< N)睡觉.每段时间都有一个效用值Ui(0≤Ui≤200000),只有当她睡觉的时候,才会发挥效用.    有了闹钟的帮助,贝茜可以选择任意的时间入睡,当然,她只能在时间划分的边界处入睡、醒来.    贝茜想使所有睡觉效用的总和最大.不幸的是,每一段睡眠的第一个时间阶段都是“入睡”阶段,而旦不记入效用值.    时间阶段是不断循环的圆(一天一天是循环的嘛),假如贝茜在时间N和时间1睡觉,那么她将得到时间1的效用值.

Input

* Line 1: Two space-separated integers: N and B

* Lines 2..N+1: Line i+1 contains a single integer, U_i, between 0 and 200,000 inclusive

    第1行:两个整数,N和B.
    第2到N+1行:每行1个数字,代表了时间i的效用值.

Output

* Line 1: A single integer, the maximum total sleep utility Goneril can achieve.

    最大的效用值.

Sample Input

5 3
2
0
3
1
4

Sample Output

6

选择时间段1(入睡),4,2

Hint

见国家队2005 Twb,ZgL作业

Source

Gold