CF1421B.Putting Bricks in the Wall
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Pink Floyd are pulling a prank on Roger Waters. They know he doesn't like walls, he wants to be able to walk freely, so they are blocking him from exiting his room which can be seen as a grid.
Roger Waters has a square grid of size n×n and he wants to traverse his grid from the upper left ( 1,1 ) corner to the lower right corner ( n,n ). Waters can move from a square to any other square adjacent by a side, as long as he is still in the grid. Also except for the cells ( 1,1 ) and ( n,n ) every cell has a value 0 or 1 in it.
Before starting his traversal he will pick either a 0 or a 1 and will be able to only go to cells values in which are equal to the digit he chose. The starting and finishing cells ( 1,1 ) and ( n,n ) are exempt from this rule, he may go through them regardless of picked digit. Because of this the cell ( 1,1 ) takes value the letter 'S' and the cell ( n,n ) takes value the letter 'F'.
For example, in the first example test case, he can go from ( 1,1 ) to ( n,n ) by using the zeroes on this path: ( 1,1 ), ( 2,1 ), ( 2,2 ), ( 2,3 ), ( 3,3 ), ( 3,4 ), ( 4,4 )
The rest of the band (Pink Floyd) wants Waters to not be able to do his traversal, so while he is not looking they will invert at most two cells in the grid (from 0 to 1 or vice versa). They are afraid they will not be quick enough and asked for your help in choosing the cells. Note that you cannot invert cells (1,1) and (n,n) .
We can show that there always exists a solution for the given constraints.
Also note that Waters will pick his digit of the traversal after the band has changed his grid, so he must not be able to reach ( n,n ) no matter what digit he picks.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤50 ). Description of the test cases follows.
The first line of each test case contains one integers n ( 3≤n≤200 ).
The following n lines of each test case contain the binary grid, square ( 1,1 ) being colored in 'S' and square ( n,n ) being colored in 'F'.
The sum of values of n doesn't exceed 200 .
输出格式
For each test case output on the first line an integer c ( 0≤c≤2 ) — the number of inverted cells.
In i -th of the following c lines, print the coordinates of the i -th cell you inverted. You may not invert the same cell twice. Note that you cannot invert cells (1,1) and (n,n) .
输入输出样例
输入#1
3 4 S010 0001 1000 111F 3 S10 101 01F 5 S0101 00000 01111 11111 0001F
输出#1
1 3 4 2 1 2 2 1 0
说明/提示
For the first test case, after inverting the cell, we get the following grid:
<pre class="verbatim"><br></br>S010<br></br>0001<br></br>1001<br></br>111F<br></br>