#P1498. Maximum Cost Deletion

Maximum Cost Deletion

题目描述

You are given a string s of length n consisting only of the characters 0 and 1.

You perform the following operation until the string becomes empty: choose some consecutive substring of equal characters, erase it from the string and glue the remaining two parts together (any of them can be empty) in the same order. For example, if you erase the substring 111 from the string 111110, you will get the string 110. When you delete a substring of length l, you get a⋅l+b points.

Your task is to calculate the maximum number of points that you can score in total, if you have to make the given string empty.

输入格式

The first line contains a single integer t (1≤t≤2000) — the number of testcases.

The first line of each testcase contains three integers n, a and b (1≤n≤100;−100≤a,b≤100) — the length of the string s and the parameters a and b.

The second line contains the string s. The string s consists only of the characters 0 and 1.

输出格式

For each testcase, print a single integer — the maximum number of points that you can score.

样例

3 
3 2 0 
000 
5 -2 5 
11001 
6 1 -4 
100111 

6 
15 
-2 

提示

来自Educational Codeforces Round 111 (Rated for Div. 2)

2021-7-15 By ZenFish