307947: CF1440A. Buy the String

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Buy the String

题意翻译

给出四个整数 $n,c_0,c_1$ 和 $h$ ,以及一个长度为 $n$ 的字符串 $s$ ,且 $s$ 仅由 $0$ 和 $1$ 组成。你可以每次以 $h$ 的花费修改字符串中的一个字符。在经过一些修改后,你需要买下这个字符串,其中字符 $0$ 需要花费 $c_0$ ,字符 $1$ 需要花费 $c_1$ 。求最小花费。

题目描述

You are given four integers $ n $ , $ c_0 $ , $ c_1 $ and $ h $ and a binary string $ s $ of length $ n $ . A binary string is a string consisting of characters $ 0 $ and $ 1 $ . You can change any character of the string $ s $ (the string should be still binary after the change). You should pay $ h $ coins for each change. After some changes (possibly zero) you want to buy the string. To buy the string you should buy all its characters. To buy the character $ 0 $ you should pay $ c_0 $ coins, to buy the character $ 1 $ you should pay $ c_1 $ coins. Find the minimum number of coins needed to buy the string.

输入输出格式

输入格式


The first line contains a single integer $ t $ ( $ 1 \leq t \leq 10 $ ) — the number of test cases. Next $ 2t $ lines contain descriptions of test cases. The first line of the description of each test case contains four integers $ n $ , $ c_{0} $ , $ c_{1} $ , $ h $ ( $ 1 \leq n, c_{0}, c_{1}, h \leq 1000 $ ). The second line of the description of each test case contains the binary string $ s $ of length $ n $ .

输出格式


For each test case print a single integer — the minimum number of coins needed to buy the string.

输入输出样例

输入样例 #1

6
3 1 1 1
100
5 10 100 1
01010
5 10 1 1
11111
5 1 10 1
11111
12 2 1 10
101110110101
2 100 1 10
00

输出样例 #1

3
52
5
10
16
22

说明

In the first test case, you can buy all characters and pay $ 3 $ coins, because both characters $ 0 $ and $ 1 $ costs $ 1 $ coin. In the second test case, you can firstly change $ 2 $ -nd and $ 4 $ -th symbols of the string from $ 1 $ to $ 0 $ and pay $ 2 $ coins for that. Your string will be $ 00000 $ . After that, you can buy the string and pay $ 5 \cdot 10 = 50 $ coins for that. The total number of coins paid will be $ 2 + 50 = 52 $ .

Input

题意翻译

给出四个整数 $n,c_0,c_1$ 和 $h$ ,以及一个长度为 $n$ 的字符串 $s$ ,且 $s$ 仅由 $0$ 和 $1$ 组成。你可以每次以 $h$ 的花费修改字符串中的一个字符。在经过一些修改后,你需要买下这个字符串,其中字符 $0$ 需要花费 $c_0$ ,字符 $1$ 需要花费 $c_1$ 。求最小花费。

加入题单

算法标签: