A12651 | Inverse of Rows and Columns
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a binary matrix $a$ of size $n \times m$ . A binary matrix is a matrix where each element is either $0$ or $1$ .
You may perform some (possibly zero) operations with this matrix. During each operation you can inverse the row of this matrix or a column of this matrix. Formally, inverting a row is changing all values in this row to the opposite ( $0$ to $1$ , $1$ to $0$ ). Inverting a column is changing all values in this column to the opposite.
Your task is to sort the initial matrix by some sequence of such operations. The matrix is considered sorted if the array $[a_{1, 1}, a_{1, 2}, \dots, a_{1, m}, a_{2, 1}, a_{2, 2}, \dots, a_{2, m}, \dots, a_{n, m - 1}, a_{n, m}]$ is sorted in non-descending order.
You may perform some (possibly zero) operations with this matrix. During each operation you can inverse the row of this matrix or a column of this matrix. Formally, inverting a row is changing all values in this row to the opposite ( $0$ to $1$ , $1$ to $0$ ). Inverting a column is changing all values in this column to the opposite.
Your task is to sort the initial matrix by some sequence of such operations. The matrix is considered sorted if the array $[a_{1, 1}, a_{1, 2}, \dots, a_{1, m}, a_{2, 1}, a_{2, 2}, \dots, a_{2, m}, \dots, a_{n, m - 1}, a_{n, m}]$ is sorted in non-descending order.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1 \le n, m \le 200$ ) — the number of rows and the number of columns in the matrix.
The next $n$ lines contain $m$ integers each. The $j$ -th element in the $i$ -th line is $a_{i, j}$ ( $0 \le a_{i, j} \le 1$ ) — the element of $a$ at position $(i, j)$ .
The next $n$ lines contain $m$ integers each. The $j$ -th element in the $i$ -th line is $a_{i, j}$ ( $0 \le a_{i, j} \le 1$ ) — the element of $a$ at position $(i, j)$ .
输出格式
If it is impossible to obtain a sorted matrix, print "NO" in the first line.
Otherwise print "YES" in the first line. In the second line print a string $r$ of length $n$ . The $i$ -th character $r_i$ of this string should be '1' if the $i$ -th row of the matrix is inverted and '0' otherwise. In the third line print a string $c$ of length $m$ . The $j$ -th character $c_j$ of this string should be '1' if the $j$ -th column of the matrix is inverted and '0' otherwise. If there are multiple answers, you can print any.
Otherwise print "YES" in the first line. In the second line print a string $r$ of length $n$ . The $i$ -th character $r_i$ of this string should be '1' if the $i$ -th row of the matrix is inverted and '0' otherwise. In the third line print a string $c$ of length $m$ . The $j$ -th character $c_j$ of this string should be '1' if the $j$ -th column of the matrix is inverted and '0' otherwise. If there are multiple answers, you can print any.
输入输出样例
输入 #1
2 2 1 1 0 1
输出 #1
YES 00 10
输入 #2
3 4 0 0 0 1 0 0 0 0 1 1 1 1
输出 #2
YES 010 0000
输入 #3
3 3 0 0 0 1 0 1 1 1 0
输出 #3
NO
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted