#P13264. [GCJ 2014 Finals] Checkerboard Matrix
[GCJ 2014 Finals] Checkerboard Matrix
题目描述
When she is bored, Mija sometimes likes to play a game with matrices. She tries to transform one matrix into another with the fewest moves. For Mija, one move is swapping any two rows of the matrix or any two columns of the matrix.
Today, Mija has a very special matrix . is a by matrix where every entry is either a 0 or a 1 . Mija decides to try and transform into a checkerboard matrix where the entries alternate between 0 and 1 along each row and column. Can you help Mija find the minimum number of moves to transform into a checkerboard matrix?
输入格式
The first line of the input gives the number of test cases, . test cases follow. Each test case starts with a line containing a single integer: . The next lines each contain characters which are the rows of ; each character is a 0 or 1 .
输出格式
For each test case, output one line containing "Case #x: ", where is the test case number (starting from 1) and is the minimum number of row swaps and column swaps required to turn into a checkerboard matrix. If it is impossible to turn into a checkerboard matrix, should be "IMPOSSIBLE".
3
1
01
10
2
1001
0110
0110
1001
1
00
00
Case #1: 0
Case #2: 2
Case #3: IMPOSSIBLE
提示
Sample Explanation
In the first sample case, is already a checkerboard matrix.
In the second sample case, Mija can turn into a checkerboard matrix by swapping columns 1 and 2 and then swapping rows 1 and 2.
In the third sample case, Mija can never turn into a checkerboard matrix; it doesn't have enough .
Limits
- .
Small dataset(4 Pts)
- Time limit:
603 seconds. - .
Large dataset(9 Pts)
- Time limit:
1205 seconds. - .