测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11557. Seating of Students

编程题 普及/提高-

题目描述

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 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.

输入输出样例

输入 #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:

<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.
上一题 去做题 下一题