#P13022. [GCJ 2021 Qualification] Moons and Umbrellas
[GCJ 2021 Qualification] Moons and Umbrellas
题目描述
Cody-Jamal is working on his latest piece of abstract art: a mural consisting of a row of waning moons and closed umbrellas. Unfortunately, greedy copyright trolls are claiming that waning moons look like an uppercase C and closed umbrellas look like a J, and they have a copyright on CJ and JC. Therefore, for each time CJ appears in the mural, Cody-Jamal must pay , and for each time JC appears in the mural, he must pay .
Cody-Jamal is unwilling to let them compromise his art, so he will not change anything already painted. He decided, however, that the empty spaces he still has could be filled strategically, to minimize the copyright expenses.
For example, if CJ?CC?
represents the current state of the mural, with C
representing a waning moon, J
representing a closed umbrella, and ?
representing a space that still needs to be painted with either a waning moon or a closed umbrella, he could finish the mural as CJCCCC
, CJCCCJ
, CJJCCC
, or CJJCCJ
. The first and third options would require paying in copyrights, while the second and fourth would require paying .
Given the costs and and a string representing the current state of the mural, how much does Cody-Jamal need to pay in copyrights if he finishes his mural in a way that minimizes that cost?
输入格式
The first line of the input gives the number of test cases, . lines follow. Each line contains two integers and and a string representing the two costs and the current state of the mural, respectively.
输出格式
For each test case, output one line containing Case #x: y
, where is the test case number (starting from 1) and is the minimum cost that Cody-Jamal needs to pay in copyrights for a finished mural.
4
2 3 CJ?CC?
4 2 CJCJ
1 3 C?J
2 5 ??J???
Case #1: 5
Case #2: 10
Case #3: 1
Case #4: 0
1
2 -5 ??JJ??
Case #1: -8
提示
Sample Explanation
Sample Case #1 is the one explained in the problem statement. The minimum cost is .
In Sample Case #2, Cody-Jamal is already finished, so he does not have a choice. There are two CJ
s and one JC
in his mural.
In Sample Case #3, substituting either C
or J
results in one CJ
either from the second and third characters or the first and second characters, respectively.
In Sample Case #4, Cody-Jamal can finish his mural with all Js. Since that contains no instance of CJ
nor JC
, it yields no copyright cost.
The following additional sample 2 fits the limits of Test Set 3. It will not be run against your submitted solutions.
In Sample Case #1 for Test Set 3, Cody-Jamal can finish his mural optimally as JCJJCC
or JCJJJC
. Either way, there is one CJ
and two JC
s in his mural.
Limits
- .
- Each character of is either , , or .
Test Set 1 (5 Pts, Visible Verdict)
- the length of .
- .
- .
Test Set 2 (11 Pts, Visible Verdict)
- the length of .
- .
- .
Extra credit!
What if some copyright holders could pay Cody-Jamal for the advertisement instead of being paid? Cody-Jamal getting paid is represented by a negative cost.
Test Set 3 (1 Pts, Hidden Verdict)
- the length of .
- .
- .