#P10456. The Pilots Brothers' refrigerator

The Pilots Brothers' refrigerator

题目描述

The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to open a refrigerator.

There are 1616 handles on the refrigerator door. Every handle can be in one of two states: open or closed. The refrigerator is open only when all handles are open. The handles are represented as a matrix 4×44\times4. You can change the state of a handle in any location [i,j](1i,j4)[i, j] (1 \leq i, j \leq 4). However, this also changes states of all handles in row ii and all handles in column jj.

The task is to determine the minimum number of handle switching necessary to open the refrigerator.

输入格式

The input contains four lines. Each of the four lines contains four characters describing the initial state of appropriate handles. A symbol “+” means that the handle is in closed state, whereas the symbol “−” means “open”. At least one of the handles is initially closed.

输出格式

The first line of the input contains NN – the minimum number of switching. The rest NN lines describe switching sequence. Each of the lines contains a row number and a column number of the matrix separated by one or more spaces. If there are several solutions, you may give any one of them.

-+--
----
----
-+--
6 
1 1 
1 3 
1 4 
4 1 
4 3 
4 4