CF1389B.Array Walk
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an array a1,a2,…,an , consisting of n positive integers.
Initially you are standing at index 1 and have a score equal to a1 . You can perform two kinds of moves:
- move right — go from your current index x to x+1 and add ax+1 to your score. This move can only be performed if x<n .
- move left — go from your current index x to x−1 and add ax−1 to your score. This move can only be performed if x>1 . Also, you can't perform two or more moves to the left in a row.
You want to perform exactly k moves. Also, there should be no more than z moves to the left among them.
What is the maximum score you can achieve?
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of testcases.
The first line of each testcase contains three integers n,k and z ( 2≤n≤105 , 1≤k≤n−1 , 0≤z≤min(5,k) ) — the number of elements in the array, the total number of moves you should perform and the maximum number of moves to the left you can perform.
The second line of each testcase contains n integers a1,a2,…,an ( 1≤ai≤104 ) — the given array.
The sum of n over all testcases does not exceed 3⋅105 .
输出格式
Print t integers — for each testcase output the maximum score you can achieve if you make exactly k moves in total, no more than z of them are to the left and there are no two or more moves to the left in a row.
输入输出样例
输入#1
4 5 4 0 1 5 4 3 2 5 4 1 1 5 4 3 2 5 4 4 10 20 30 40 50 10 7 3 4 6 8 2 9 9 7 4 10 9
输出#1
15 19 150 56
说明/提示
In the first testcase you are not allowed to move left at all. So you make four moves to the right and obtain the score a1+a2+a3+a4+a5 .
In the second example you can move one time to the left. So we can follow these moves: right, right, left, right. The score will be a1+a2+a3+a2+a3 .
In the third example you can move four times to the left but it's not optimal anyway, you can just move four times to the right and obtain the score a1+a2+a3+a4+a5 .