Codeforces Round 493 (Div. 1) |
---|
Finished |
You've got a string $$$a_1, a_2, \dots, a_n$$$, consisting of zeros and ones.
Let's call a sequence of consecutive elements $$$a_i, a_{i + 1}, \ldots, a_j$$$ ($$$1\leq i\leq j\leq n$$$) a substring of string $$$a$$$.
You can apply the following operations any number of times:
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?
The first line of input contains integers $$$n$$$, $$$x$$$ and $$$y$$$ ($$$1 \leq n \leq 300\,000, 0 \leq x, y \leq 10^9$$$) — 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 $$$a$$$ of length $$$n$$$, consisting of zeros and ones.
Print a single integer — the minimum total cost of operations you need to spend to get a string consisting only of ones. Print $$$0$$$, if you do not need to perform any operations.
5 1 10
01000
11
5 10 1
01000
2
7 2 3
1111111
0
In the first sample, at first you need to reverse substring $$$[1 \dots 2]$$$, and then you need to invert substring $$$[2 \dots 5]$$$.
Then the string was changed as follows:
«01000» $$$\to$$$ «10000» $$$\to$$$ «11111».
The total cost of operations is $$$1 + 10 = 11$$$.
In the second sample, at first you need to invert substring $$$[1 \dots 1]$$$, and then you need to invert substring $$$[3 \dots 5]$$$.
Then the string was changed as follows:
«01000» $$$\to$$$ «11000» $$$\to$$$ «11111».
The overall cost is $$$1 + 1 = 2$$$.
In the third example, string already consists only of ones, so the answer is $$$0$$$.
Name |
---|