CF590D.Top Secret Task

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A top-secret military base under the command of Colonel Zuev is expecting an inspection from the Ministry of Defence. According to the charter, each top-secret military base must include a top-secret troop that should... well, we cannot tell you exactly what it should do, it is a top secret troop at the end. The problem is that Zuev's base is missing this top-secret troop for some reasons.

The colonel decided to deal with the problem immediately and ordered to line up in a single line all nn soldiers of the base entrusted to him. Zuev knows that the loquacity of the ii -th soldier from the left is equal to qiq_{i} . Zuev wants to form the top-secret troop using kk leftmost soldiers in the line, thus he wants their total loquacity to be as small as possible (as the troop should remain top-secret). To achieve this, he is going to choose a pair of consecutive soldiers and swap them. He intends to do so no more than ss times. Note that any soldier can be a participant of such swaps for any number of times. The problem turned out to be unusual, and colonel Zuev asked you to help.

Determine, what is the minimum total loquacity of the first kk soldiers in the line, that can be achieved by performing no more than ss swaps of two consecutive soldiers.

输入格式

The first line of the input contains three positive integers nn , kk , ss ( 1<=k<=n<=1501<=k<=n<=150 , 1<=s<=1091<=s<=10^{9} ) — the number of soldiers in the line, the size of the top-secret troop to be formed and the maximum possible number of swap operations of the consecutive pair of soldiers, respectively.

The second line of the input contains nn integer qiq_{i} ( 1<=qi<=10000001<=q_{i}<=1000000 ) — the values of loquacity of soldiers in order they follow in line from left to right.

输出格式

Print a single integer — the minimum possible total loquacity of the top-secret troop.

输入输出样例

  • 输入#1

    3 2 2
    2 4 1
    

    输出#1

    3
    
  • 输入#2

    5 4 2
    10 1 6 2 5
    

    输出#2

    18
    
  • 输入#3

    5 2 3
    3 1 4 2 5
    

    输出#3

    3
    

说明/提示

In the first sample Colonel has to swap second and third soldiers, he doesn't really need the remaining swap. The resulting soldiers order is: ( 22 , 11 , 44 ). Minimum possible summary loquacity of the secret troop is 33 . In the second sample Colonel will perform swaps in the following order:

  1. (10, 1, 6 — 2, 5)
  2. (10, 1, 2, 6 — 5)

The resulting soldiers order is (10, 1, 2, 5, 6).

Minimum possible summary loquacity is equal to 1818 .

首页