CF226D.The table

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Harry Potter has a difficult homework. Given a rectangular table, consisting of n×mn×m cells. Each cell of the table contains the integer. Harry knows how to use two spells: the first spell change the sign of the integers in the selected row, the second — in the selected column. Harry's task is to make non-negative the sum of the numbers in each row and each column using these spells.

Alone, the boy can not cope. Help the young magician!

输入格式

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

Next nn lines follow, each contains mm integers: jj -th integer in the ii -th line is ai,ja_{i,j} (ai,j<=100)(|a_{i,j}|<=100) , the number in the ii -th row and jj -th column of the table.

The rows of the table numbered from 1 to nn . The columns of the table numbered from 1 to mm .

输出格式

In the first line print the number aa — the number of required applications of the first spell. Next print aa space-separated integers — the row numbers, you want to apply a spell. These row numbers must be distinct!

In the second line print the number bb — the number of required applications of the second spell. Next print bb space-separated integers — the column numbers, you want to apply a spell. These column numbers must be distinct!

If there are several solutions are allowed to print any of them.

输入输出样例

  • 输入#1

    4 1
    -1
    -1
    -1
    -1
    

    输出#1

    4 1 2 3 4 
    0 
    
  • 输入#2

    2 4
    -1 -1 -1 2
    1 1 1 1
    

    输出#2

    1 1 
    1 4 
    
首页