-
Notifications
You must be signed in to change notification settings - Fork 0
/
1415C Bouncing Ball.cpp
52 lines (49 loc) · 1.19 KB
/
1415C Bouncing Ball.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <bits/stdc++.h>
using namespace std;
template<class C> void mini(C&a, C b){ a=min(a, b);}
template<class C> void maxi(C&a, C b){a=max(a,b);}
#define sz(x) x.size()
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define forall(it,s) for(auto it = s.begin(); it != s.end(); ++it)
#define F0(i,n) for(int i = 0; i < n; i++)
#define F1(i,n) for(int (i) = 1; i <= n; i++)
#define F0R(i,n) for(int (i) = n-1; i >= 0; i--)
#define F1R(i,n) for(int (i) = n; i >= 1; i--)
#define REP(i,a,b) for(int i = a; i <= b; i++)
#define REPR(i,a,b) for(int i = a; i >= b; i--)
#define INF 1e9
#define todo(v) v.begin(),v.end()
#define eps 0.000000000001
#define mod 1000000007
#define PI acos(-1.0)
#define ll long long
void solve(){
int n, p, k, x, y;
cin >> n >> p >> k;
string a;
cin >> a;
cin >> x >> y;
vector<ll> dp(n, 0);
for(int i=n-1; i>=p-1; i--){
if(i+k < n){
dp[i] = dp[i+k];
}
if(a[i] == '0'){
dp[i] += x;
}
}
ll ans = INF;
for(int i=p-1; i<n && i<=(p-1) + (n-p); i++){
ans = min(ans, dp[i]+y*(i-(p-1)));
}
cout << ans << endl;
}
int main(){
int t;
cin >> t;
while(t--) solve();
return 0;
}