#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 parallel streets, each with 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 (), the number of test cases.
For each case, the first line containing integers: , ( and ). Then 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 is the case number counted from one, and 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 .
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 and to turn all the lights off.
In the third test case, you can switch the light and to turn all the lights off.
Resources
2010 ACM-ICPC Multi-University Training Contest 13 Host by UESTC