小小思维题

Problem Description

You've got a string a1,a2,…,ana1,a2,…,an, consisting of zeros and ones.

Let's call a sequence of consecutive elements ai,ai + 1,…, ajai,ai + 1,…, aj (1≤ i≤ j≤ n1≤ i≤ j≤ n) a substring of string aa.

You can apply the following operations any number of times:

  • Choose some substring of string aa (for example, you can choose entire string) and reverse it, paying xx coins for it (for example, «0101101» →→ «0111001»);
  • Choose some substring of string aa (for example, you can choose entire string or just one symbol) and replace each symbol to the opposite one (zeros are replaced by ones, and ones — by zeros), paying yy coins for it (for example, «0101101» →→«0110001»).

You can apply these operations in any order. It is allowed to apply the operations multiple times to the same substring.

What is the minimum number of coins you need to spend to get a string consisting only of ones?

Input

The first line of input contains integers nn, xx and yy (1 ≤ n ≤ 300000,0≤x,y≤1091 ≤ n ≤ 300000,0≤x,y≤109) — length of the string, cost of the first operation (substring reverse) and cost of the second operation (inverting all elements of substring).

The second line contains the string aa of length nn, consisting of zeros and ones.

Output

Print a single integer — the minimum total cost of operations you need to spend to get a string consisting only of ones. Print 00, if you do not need to perform any operations.

Examples

Input

5 1 10
01000

Output

11

Input

5 10 1
01000

Output

2

Input

7 2 3
1111111

Output

0

Note

In the first sample, at first you need to reverse substring [1…2][1…2], and then you need to invert substring [2…5][2…5].

Then the string was changed as follows:

«01000» →→ «10000» →→ «11111».

The total cost of operations is 1+10=111+10=11.

In the second sample, at first you need to invert substring [1…1][1…1], and then you need to invert substring [3…5][3…5].

Then the string was changed as follows:

«01000» →→ «11000» →→ «11111».

The overall cost is 1+1=21+1=2.

In the third example, string already consists only of ones, so the answer is 00.

好好想一想你一定能做出来

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
const int MAXN = 300005;
char s[MAXN];
int main() {
	int n, a, b;
	while(scanf("%d %d %d", &n, &a, &b) != EOF) {
		scanf("%s", s);
		long long temp = 0;
		int len = strlen(s);
		for(int i = 0; i < len; i++) {
			int flag = i;
			if(s[flag] == '0') {
				temp++;
				while(s[flag] == '0' && flag < len)
					flag++;
				i = flag;
			}
		}
		if(temp == 0) {
			printf("0\n");
		} else {
			temp--;
			printf("%lld\n", 1ll*min(temp*a + b, b*(temp + 1)));
		}
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/Adusts/article/details/81354573