#Lutece0489. Smart Typist
Smart Typist
Migrated from Lutece 489 Smart Typist
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
The most mysterious organization in Chani is “Related Department”. It is related to almost everything, and has branches almost everywhere. Events always have relation with it. Whenever disasters happen, “Related Department” would stand out to commit its responsibility. The members of “Related Department” are called “Related person”. However, ordinary people have no idea about who is “Related person” since their information is national secret.
Xiaoming is the top typist in Chani. The legend is that he could type words per minute. Today he accepted an order from a man who said that he is a “Related person”. That “Related person” asked Xiaoming to turn many paper documents into electronic files. For reasons of security, Xiaoming has to use a special device which has limited functions. With the special device, Xiaoming can only perform such operations:
- Creating a new file. It takes a quite short time that we ignore the time for it.
- Replacing current file with some file finished before. A file is allowed to be used to replace another one only after it is finished and won’t be edited later.
- Deleting any letter(s) in current file.
- Inserting letter(s) at arbitrary position in current file.
Note that, the keyboard for this device is so strange that the time for typing different letter may be different.
Xiaoming is somewhat afraid of dealing with “Related person”, so he wants to accomplish this order as soon as possible. Knowing time needed for each operation, Xiaoming is trying to make the best plan which spends the minimum time.
Input
The first line of the input is (no more than ), which stands for the number of test cases you need to solve.
Each case begins with two integers, repCost and delCost (), time needed to replace current file, time for deleting one letter. On the second line, there are numbers representing the time for typing each letter from a
to z
, each number is between and .
Then a line with an integer () is given indicating the number of files.
lines followed. Each line gives a string only consisting of letters a
-z
to represent a file. The maximum length of the strings is not greater than .
Output
For every test case, you should output "Case #k: c
in a line, where indicates the case number and counts from , is the minimum time needed.
Samples
2
1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
2
aaab
aaaa
10 10
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
2
aaab
aaaa
Case #1: 7
Case #2: 8
Note
- Case #, we can type
a
's in one file, it takes unit time. Then creating a new file and replace it with file containingaaaa
, it takes unit time. Finally delete a lettera
and insert a letterb
which takes unit time. The total time needed is unit time. - Case #, it would be more efficient to type the letters directly in two files, because replacing and deleting operation are costly.
Resources
Sichuan State Programming Contest 2011