#Lutece0010. In Galgame We Trust
In Galgame We Trust
Migrated from Lutece 10 In Galgame We Trust
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
As we all know, there are many interesting (H) games in kennethsnow’s computer. But he sets a password for those games. Zplinti1 wants to crack his password and play those games.
Kennethsnow uses only kinds of characters to form his password:
- brackets:
(
and)
- square brackets:
[
and]
- curly brackets:
{
and}
Kennethsnow’s password must be a correct bracket sequence, and will not be empty.
Zplinti1 found a string written by kennethsnow, and he is sure that kennethsnow’s password is a substring of that, he wonders the maximum possible length of his password, or if his judgment is wrong.
Please note that the original string may also be the password.
Input
The first line of input contains a number , indicating the number of test cases. () For each case, there is a string s, which is the string zplinti1 found. (, the string will contain those kinds of characters only)
Output
For each case, output Case #i:
first. ( is the number of the test case, from to ). If zplinti1’s judgment is wrong (i.e. the answer is ), output I think H is wrong!
, otherwise output a single number, indicating the maximum possible length of kennethsnow’s password.
Samples
3
(){[]}
{([(])}
))[{}]]
Case #1: 6
Case #2: I think H is wrong!
Case #3: 4
Note
We can define a correct bracket sequence
more precisely in this way:
Strings ()
, []
, and {}
are correct.
For each correct sequence A
, (A)
, [A]
, {A}
is also correct.
For each correct sequence A
and B
, AB
is also correct.
Resources
The 11th UESTC Programming Contest Final