#Lutece0940. Another String Game

Another String Game

Migrated from Lutece 940 Another String Game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Bob and Alice like playing games together. Today, they come up with a new string game.

The rule of this game is like the following statement:

Initially, Alice has a string AA. Then Bob can choose a prefix of string AA as his initial string BB and pay a cost equals the length of his initial string BB multiplied by XX. (for example: if Alice's string is abc, then Bob can choose a and pay XX cost, or choose ab and pay 2×X2 \times X cost, or choose abc and pay 3×X3 \times X cost)

After that,Bob can perform the following two operations:

Operation I: Connect a copy of his string after his string, and pay a cost equals YY. (for example: after performing operation 11 Bob can change ab to abab or change aac to aacaac).

Operation II: Delete a suffix of his string, and pay a cost equals ZZ.(for example: after performing operation 22 Bob can change abcd to a, ab, or abc).

When Bob's string is the same as Alice's string, the game is end. Now, Bob wonders what's the minimum total cost he must pay after the end of the game?

Input

There is an integer TT in the first line, indicates the number of test cases.

For each case, the first line contains a string AA, which is Alice's string, it only contains lowercase letters.

The second line contains three integer XX, YY, ZZ, as mentioned in the description.

1T601\leq T\leq 60

1A1051\leq |A|\leq 10^{5}

1X,Y,Z101\leq X, Y, Z \leq 10

Output

For each test, output "Case #i: " first, ii is the case number, from 11 to TT. Then output an integer in one line, which is the minimum cost Bob must pay.

Samples

3
abcab
1 2 4
abcab
2 2 1
aaaaaaaa
1 1 1
Case #1: 5
Case #2: 9
Case #3: 4

Resources

Sichuan State Programming Contest 2014