#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 . Then Bob can choose a prefix of string as his initial string and pay a cost equals the length of his initial string multiplied by . (for example: if Alice's string is abc
, then Bob can choose a
and pay cost, or choose ab
and pay cost, or choose abc
and pay 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 . (for example: after performing operation Bob can change ab
to abab
or change aac
to aacaac
).
Operation II: Delete a suffix of his string, and pay a cost equals .(for example: after performing operation 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 in the first line, indicates the number of test cases.
For each case, the first line contains a string , which is Alice's string, it only contains lowercase letters.
The second line contains three integer , , , as mentioned in the description.
Output
For each test, output "Case #i: " first, is the case number, from to . 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