#Lutece0294. Necklace
Necklace
Migrated from Lutece 294 Necklace
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
You are given a necklace consists of beads linked as a circle. Each bead is either crystal or jade. Now, your task is:
- Choose an arbitrary position to cut it into a chain.
- Choose either direction to collect it.
- Collect all the beads in the chosen direction under the constraint that the number of crystal beads in your hand is not less than the jade at any time.
Calculate the number of ways to cut meeting the constraint.
Input
In the first line there is an integer , indicates the number of test cases. ()
Then lines follow, each line describes a necklace. C
stands for a crystal bead and J
stands for a jade bead. The length of necklace is between and .
Output
For each case, print Case x: d
on a single line in which is the number of case counted from one and d is the number of ways.
Samples
2
CJCJCJ
CCJJCCJJCCJJCCJJ
Case 1: 6
Case 2: 8
Resources
2010 ACM-ICPC Multi-University Training Contest 13 Host by UESTC