CF1570F.Square Filling

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given two matrices AA and BB . Each matrix contains exactly nn rows and mm columns. Each element of AA is either 00 or 11 ; each element of BB is initially 00 .

You may perform some operations with matrix BB . During each operation, you choose any submatrix of BB having size 2×22 \times 2 , and replace every element in the chosen submatrix with 11 . In other words, you choose two integers xx and yy such that 1x<n1 \le x < n and 1y<m1 \le y < m , and then set Bx,yB_{x, y} , Bx,y+1B_{x, y + 1} , Bx+1,yB_{x + 1, y} and Bx+1,y+1B_{x + 1, y + 1} to 11 .

Your goal is to make matrix BB equal to matrix AA . Two matrices AA and BB are equal if and only if every element of matrix AA is equal to the corresponding element of matrix BB .

Is it possible to make these matrices equal? If it is, you have to come up with a sequence of operations that makes BB equal to AA . Note that you don't have to minimize the number of operations.

输入格式

The first line contains two integers nn and mm ( 2n,m502 \le n, m \le 50 ).

Then nn lines follow, each containing mm integers. The jj -th integer in the ii -th line is Ai,jA_{i, j} . Each integer is either 00 or 11 .

输出格式

If it is impossible to make BB equal to AA , print one integer 1-1 .

Otherwise, print any sequence of operations that transforms BB into AA in the following format: the first line should contain one integer kk — the number of operations, and then kk lines should follow, each line containing two integers xx and yy for the corresponding operation (set Bx,yB_{x, y} , Bx,y+1B_{x, y + 1} , Bx+1,yB_{x + 1, y} and Bx+1,y+1B_{x + 1, y + 1} to 11 ). The condition 0k25000 \le k \le 2500 should hold.

输入输出样例

  • 输入#1

    3 3
    1 1 1
    1 1 1
    0 1 1

    输出#1

    3
    1 1
    1 2
    2 2
  • 输入#2

    3 3
    1 0 1
    1 0 1
    0 0 0

    输出#2

    -1
  • 输入#3

    3 2
    0 0
    0 0
    0 0

    输出#3

    0

说明/提示

The sequence of operations in the first example:

000110111111000110111111000000000011\begin{matrix} 0 & 0 & 0 & & 1 & 1 & 0 & & 1 & 1 & 1 & & 1 & 1 & 1 \\ 0 & 0 & 0 & \rightarrow & 1 & 1 & 0 & \rightarrow & 1 & 1 & 1 & \rightarrow & 1 & 1 & 1 \\ 0 & 0 & 0 & & 0 & 0 & 0 & & 0 & 0 & 0 & & 0 & 1 & 1 \end{matrix}

首页