CF815A.Karen and Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

On the way to school, Karen became fixated on the puzzle game on her phone!

The game is played as follows. In each level, you have a grid with nn rows and mm columns. Each cell originally contains the number 00 .

One move consists of choosing one row or column, and adding 11 to all of the cells in that row or column.

To win the level, after all the moves, the number in the cell at the ii -th row and jj -th column should be equal to gi,jg_{i,j} .

Karen is stuck on one level, and wants to know a way to beat this level using the minimum number of moves. Please, help her with this task!

输入格式

The first line of input contains two integers, nn and mm ( 1<=n,m<=1001<=n,m<=100 ), the number of rows and the number of columns in the grid, respectively.

The next nn lines each contain mm integers. In particular, the jj -th integer in the ii -th of these rows contains gi,jg_{i,j} ( 0<=gi,j<=5000<=g_{i,j}<=500 ).

输出格式

If there is an error and it is actually not possible to beat the level, output a single integer -1.

Otherwise, on the first line, output a single integer kk , the minimum number of moves necessary to beat the level.

The next kk lines should each contain one of the following, describing the moves in the order they must be done:

  • row xx , ( 1<=x<=n1<=x<=n ) describing a move of the form "choose the xx -th row".
  • col xx , ( 1<=x<=m1<=x<=m ) describing a move of the form "choose the xx -th column".

If there are multiple optimal solutions, output any one of them.

输入输出样例

  • 输入#1

    3 5
    2 2 2 3 2
    0 0 0 1 0
    1 1 1 2 1
    

    输出#1

    4
    row 1
    row 1
    col 4
    row 3
    
  • 输入#2

    3 3
    0 0 0
    0 1 0
    0 0 0
    

    输出#2

    -1
    
  • 输入#3

    3 3
    1 1 1
    1 1 1
    1 1 1
    

    输出#3

    3
    row 1
    row 2
    row 3
    

说明/提示

In the first test case, Karen has a grid with 33 rows and 55 columns. She can perform the following 44 moves to beat the level:

In the second test case, Karen has a grid with 33 rows and 33 columns. It is clear that it is impossible to beat the level; performing any move will create three 11 s on the grid, but it is required to only have one 11 in the center.

In the third test case, Karen has a grid with 33 rows and 33 columns. She can perform the following 33 moves to beat the level:

Note that this is not the only solution; another solution, among others, is col 1, col 2, col 3.

首页