A11557 | Seating of Students
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Students went into a class to write a test and sat in some way. The teacher thought: "Probably they sat in this order to copy works of each other. I need to rearrange them in such a way that students that were neighbors are not neighbors in a new seating."
The class can be represented as a matrix with $n$ rows and $m$ columns with a student in each cell. Two students are neighbors if cells in which they sit have a common side.
Let's enumerate students from $1$ to $n·m$ in order of rows. So a student who initially sits in the cell in row $i$ and column $j$ has a number $(i-1)·m+j$ . You have to find a matrix with $n$ rows and $m$ columns in which all numbers from $1$ to $n·m$ appear exactly once and adjacent numbers in the original matrix are not adjacent in it, or determine that there is no such matrix.
The class can be represented as a matrix with $n$ rows and $m$ columns with a student in each cell. Two students are neighbors if cells in which they sit have a common side.
Let's enumerate students from $1$ to $n·m$ in order of rows. So a student who initially sits in the cell in row $i$ and column $j$ has a number $(i-1)·m+j$ . You have to find a matrix with $n$ rows and $m$ columns in which all numbers from $1$ to $n·m$ appear exactly once and adjacent numbers in the original matrix are not adjacent in it, or determine that there is no such matrix.
输入格式
The only line contains two integers $n$ and $m$ ( $1<=n,m<=10^{5}$ ; $n·m<=10^{5}$ ) — the number of rows and the number of columns in the required matrix.
输出格式
If there is no such matrix, output "NO" (without quotes).
Otherwise in the first line output "YES" (without quotes), and in the next $n$ lines output $m$ integers which form the required matrix.
Otherwise in the first line output "YES" (without quotes), and in the next $n$ lines output $m$ integers which form the required matrix.
输入输出样例
输入 #1
2 4
输出 #1
YES 5 4 7 2 3 6 1 8
输入 #2
2 1
输出 #2
NO
In the first test case the matrix initially looks like this:
In the second test case there are only two possible seatings and in both of them students with numbers 1 and 2 are neighbors.
<br></br>1 2 3 4<br></br>5 6 7 8<br></br>It's easy to see that there are no two students that are adjacent in both matrices.In the second test case there are only two possible seatings and in both of them students with numbers 1 and 2 are neighbors.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted