#Lutece0295. Street Lamp

Street Lamp

Migrated from Lutece 295 Street Lamp

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

There are NN parallel streets, each with MM street lamps, every day when it's about to dawn, you'll have to turn all of them off, the problem is, the lamps are wired in a strange way and turning off one lamp could affect others lamps' on-off states! Some of the lamps of the same street are wired but some are not, so turning on or off may make the lamp direct connecting to it change state (from on to off and vice versa).

Given a state of the wirings and of the street lamps, find the minimum number of switch turn all the lamps off!

Input

The first line is TT (T50T\leq 50), the number of test cases.

For each case, the first line containing 22 integers: NN, MM (0<N1000 < N\leq 100 and 0<M100 < M\leq 10). Then 2N12N - 1 lines followed, describing the lamps and the wires between them. Each line is a street with m lamps, o represent a lit lamp while * represent a lamp that already be turned off, | and - represent a wire that connecting two neighboring lamps. And the \ ,/ indicates a wire sideling connecting. And X indicates two wires sideling connecting. For more details, please read the hint for test case.

Output

For each case, output Case d: x, where dd is the case number counted from one, and xx is an integer represents the minimum number of switch to turn all the lamps off! If no method to turn all the lamps off, please output -1 instead of xx.

Samples

3
2 2
*-o

o-*
2 2
*-o
 \ 
o-*
2 3
o o o
 X X 
o o o
Case 1: -1
Case 2: 2
Case 3: 2

Note

In the second test case, you can switch the light (0,0)(0, 0) and (1,1)(1, 1) to turn all the lights off.

In the third test case, you can switch the light (0,1)(0, 1) and (1,1)(1, 1) to turn all the lights off.

Resources

2010 ACM-ICPC Multi-University Training Contest 13 Host by UESTC