A11890 | Vasya And The Matrix
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Now Vasya is taking an exam in mathematics. In order to get a good mark, Vasya needs to guess the matrix that the teacher has constructed!
Vasya knows that the matrix consists of $n$ rows and $m$ columns. For each row, he knows the xor (bitwise excluding or) of the elements in this row. The sequence $a_{1},a_{2},...,a_{n}$ denotes the xor of elements in rows with indices $1$ , $2$ , ..., $n$ , respectively. Similarly, for each column, he knows the xor of the elements in this column. The sequence $b_{1},b_{2},...,b_{m}$ denotes the xor of elements in columns with indices $1$ , $2$ , ..., $m$ , respectively.
Help Vasya! Find a matrix satisfying the given constraints or tell him that there is no suitable matrix.
Vasya knows that the matrix consists of $n$ rows and $m$ columns. For each row, he knows the xor (bitwise excluding or) of the elements in this row. The sequence $a_{1},a_{2},...,a_{n}$ denotes the xor of elements in rows with indices $1$ , $2$ , ..., $n$ , respectively. Similarly, for each column, he knows the xor of the elements in this column. The sequence $b_{1},b_{2},...,b_{m}$ denotes the xor of elements in columns with indices $1$ , $2$ , ..., $m$ , respectively.
Help Vasya! Find a matrix satisfying the given constraints or tell him that there is no suitable matrix.
输入格式
The first line contains two numbers $n$ and $m (2<=n,m<=100)$ — the dimensions of the matrix.
The second line contains $n$ numbers $a_{1},a_{2},...,a_{n} (0<=a_{i}<=10^{9})$ , where $a_{i}$ is the xor of all elements in row $i$ .
The third line contains $m$ numbers $b_{1},b_{2},...,b_{m} (0<=b_{i}<=10^{9})$ , where $b_{i}$ is the xor of all elements in column $i$ .
The second line contains $n$ numbers $a_{1},a_{2},...,a_{n} (0<=a_{i}<=10^{9})$ , where $a_{i}$ is the xor of all elements in row $i$ .
The third line contains $m$ numbers $b_{1},b_{2},...,b_{m} (0<=b_{i}<=10^{9})$ , where $b_{i}$ is the xor of all elements in column $i$ .
输出格式
If there is no matrix satisfying the given constraints in the first line, output "NO".
Otherwise, on the first line output "YES", and then $n$ rows of $m$ numbers in each $c_{i1},c_{i2},...\ ,c_{im} (0<=c_{ij}<=2·10^{9})$ — the description of the matrix.
If there are several suitable matrices, it is allowed to print any of them.
Otherwise, on the first line output "YES", and then $n$ rows of $m$ numbers in each $c_{i1},c_{i2},...\ ,c_{im} (0<=c_{ij}<=2·10^{9})$ — the description of the matrix.
If there are several suitable matrices, it is allowed to print any of them.
输入输出样例
输入 #1
2 3 2 9 5 3 13
输出 #1
YES 3 4 5 6 7 8
输入 #2
3 3 1 7 6 2 15 12
输出 #2
NO
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted