CF1647C.Madoka and Childish Pranks
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Madoka as a child was an extremely capricious girl, and one of her favorite pranks was drawing on her wall. According to Madoka's memories, the wall was a table of n rows and m columns, consisting only of zeroes and ones. The coordinate of the cell in the i -th row and the j -th column ( 1≤i≤n , 1≤j≤m ) is (i,j) .
One day she saw a picture "Mahou Shoujo Madoka Magica" and decided to draw it on her wall. Initially, the Madoka's table is a table of size n×m filled with zeroes. Then she applies the following operation any number of times:
Madoka selects any rectangular subtable of the table and paints it in a chess coloring (the upper left corner of the subtable always has the color 0 ). Note that some cells may be colored several times. In this case, the final color of the cell is equal to the color obtained during the last repainting.
White color means 0 , black means 1 . So, for example, the table in the first picture is painted in a chess coloring, and the others are not.For better understanding of the statement, we recommend you to read the explanation of the first test.
Help Madoka and find some sequence of no more than n⋅m operations that allows you to obtain the picture she wants, or determine that this is impossible.
输入格式
Each test contains multiple test cases. The first line contains a single integer t ( 1≤t≤10 ) — the number of test cases. Description of the test cases follows.
The first line of each test case contains two integers n and m ( 1≤n,m≤100 ) — the size of the table. Each of the following n lines contains a string of length m consisting only of 1 and 0 — description of the picture that Madoka wants to obtain.
输出格式
If it is impossible to obtain the given picture, print −1 .
Otherwise, print in the first line a single integer q ( 0≤q≤n⋅m ) — the number of operations you need to obtain the picture. Note that you do not need to minimize the number of operations.
Then for each operation (in the order of execution) print a single line containing four numbers — the coordinates of the upper-left corner and the lower-right corner of the rectangle.
输入输出样例
输入#1
4 4 5 01000 10100 01010 00110 2 3 001 010 3 3 110 101 000 1 1 0
输出#1
4 1 1 3 3 3 3 4 4 4 3 4 4 4 2 4 3 1 1 2 2 3 -1 0
说明/提示
The description of the first test case is below.
In the third test case, it is impossible to paint the desired picture.
In the fourth test case, the initial table is already the desired picture.