A13587 | Array Walk
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a_1, a_2, \dots, a_n$ , consisting of $n$ positive integers.
Initially you are standing at index $1$ and have a score equal to $a_1$ . You can perform two kinds of moves:
1. move right — go from your current index $x$ to $x+1$ and add $a_{x+1}$ to your score. This move can only be performed if $x<n$ .
2. move left — go from your current index $x$ to $x-1$ and add $a_{x-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?
Initially you are standing at index $1$ and have a score equal to $a_1$ . You can perform two kinds of moves:
1. move right — go from your current index $x$ to $x+1$ and add $a_{x+1}$ to your score. This move can only be performed if $x<n$ .
2. move left — go from your current index $x$ to $x-1$ and add $a_{x-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 \le t \le 10^4$ ) — the number of testcases.
The first line of each testcase contains three integers $n, k$ and $z$ ( $2 \le n \le 10^5$ , $1 \le k \le n - 1$ , $0 \le z \le 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 $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^4$ ) — the given array.
The sum of $n$ over all testcases does not exceed $3 \cdot 10^5$ .
The first line of each testcase contains three integers $n, k$ and $z$ ( $2 \le n \le 10^5$ , $1 \le k \le n - 1$ , $0 \le z \le 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 $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^4$ ) — the given array.
The sum of $n$ over all testcases does not exceed $3 \cdot 10^5$ .
输出格式
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 $a_1 + a_2 + a_3 + a_4 + a_5$ .
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 $a_1 + a_2 + a_3 + a_2 + a_3$ .
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 $a_1 + a_2 + a_3 + a_4 + a_5$ .
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 $a_1 + a_2 + a_3 + a_2 + a_3$ .
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 $a_1 + a_2 + a_3 + a_4 + a_5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted