307776: CF1415C. Bouncing Ball
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Bouncing Ball
题意翻译
给出一个由 $0,1$ 组成的序列,要从第 $p$ 个位置开始,每次跳 $k$ 个单位,要求跳出序列,只有当所有经过的位置都为 $1$ 才合法。你可以花费 $y$ 将这个序列的第一个元素删除,也可以花费 $x$ 将其中一个位置改为 $1$,求能合法跳出序列的最小修改花费。题目描述
You're creating a game level for some mobile game. The level should contain some number of cells aligned in a row from left to right and numbered with consecutive integers starting from $ 1 $ , and in each cell you can either put a platform or leave it empty. In order to pass a level, a player must throw a ball from the left so that it first lands on a platform in the cell $ p $ , then bounces off it, then bounces off a platform in the cell $ (p + k) $ , then a platform in the cell $ (p + 2k) $ , and so on every $ k $ -th platform until it goes farther than the last cell. If any of these cells has no platform, you can't pass the level with these $ p $ and $ k $ . You already have some level pattern $ a_1 $ , $ a_2 $ , $ a_3 $ , ..., $ a_n $ , where $ a_i = 0 $ means there is no platform in the cell $ i $ , and $ a_i = 1 $ means there is one. You want to modify it so that the level can be passed with given $ p $ and $ k $ . In $ x $ seconds you can add a platform in some empty cell. In $ y $ seconds you can remove the first cell completely, reducing the number of cells by one, and renumerating the other cells keeping their order. You can't do any other operation. You can not reduce the number of cells to less than $ p $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1415C/db37e109bcbb2fc66573faa03cd327ce59fe9d9d.png)Illustration for the third example test case. Crosses mark deleted cells. Blue platform is the newly added.What is the minimum number of seconds you need to make this level passable with given $ p $ and $ k $ ?输入输出格式
输入格式
The first line contains the number of test cases $ t $ ( $ 1 \le t \le 100 $ ). Description of test cases follows. The first line of each test case contains three integers $ n $ , $ p $ , and $ k $ ( $ 1 \le p \le n \le 10^5 $ , $ 1 \le k \le n $ ) — the number of cells you have, the first cell that should contain a platform, and the period of ball bouncing required. The second line of each test case contains a string $ a_1 a_2 a_3 \ldots a_n $ ( $ a_i = 0 $ or $ a_i = 1 $ ) — the initial pattern written without spaces. The last line of each test case contains two integers $ x $ and $ y $ ( $ 1 \le x, y \le 10^4 $ ) — the time required to add a platform and to remove the first cell correspondingly. The sum of $ n $ over test cases does not exceed $ 10^5 $ .
输出格式
For each test case output a single integer — the minimum number of seconds you need to modify the level accordingly. It can be shown that it is always possible to make the level passable.
输入输出样例
输入样例 #1
3
10 3 2
0101010101
2 2
5 4 1
00000
2 10
11 2 3
10110011000
4 3
输出样例 #1
2
4
10