CF1634C.OKEA
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
People worry that computers will get too smart and take over the world, but the real problem is that they're too stupid and they've already taken over the world.
— Pedro Domingos
You work for a well-known department store that uses leading technologies and employs mechanistic work — that is, robots!
The department you work in sells n⋅k items. The first item costs 1 dollar, the second item costs 2 dollars, and so on: i -th item costs i dollars. The items are situated on shelves. The items form a rectangular grid: there are n shelves in total, and each shelf contains exactly k items. We will denote by ai,j the price of j -th item (counting from the left) on the i -th shelf, 1≤i≤n,1≤j≤k .
Occasionally robots get curious and ponder on the following question: what is the mean price (arithmetic average) of items ai,l,ai,l+1,…,ai,r for some shelf i and indices l≤r ? Unfortunately, the old robots can only work with whole numbers. If the mean price turns out not to be an integer, they break down.
You care about robots' welfare. You want to arrange the items in such a way that the robots cannot theoretically break. Formally, you want to choose such a two-dimensional array a that:
- Every number from 1 to n⋅k (inclusively) occurs exactly once.
- For each i,l,r , the mean price of items from l to r on i -th shelf is an integer.
Find out if such an arrangement is possible, and if it is, give any example of such arrangement.
输入格式
The first line contains a single integer t ( 1≤t≤500 ) — the number of test cases.
The first and only line of each test case contains two integers n and k ( 1≤n,k≤500 ) — the number of shelves and length of each shelf, respectively.
It is guaranteed that the sum n over all test cases does not exceed 500 and the sum k over all test cases does not exceed 500 .
输出格式
Print the answer for each test case.
If such an arrangement exists, print "YES" on a single line. After that, print any example on n lines of k numbers each, one line per shelf. Each number from 1 to n⋅k must occur exactly once in the output.
If no good arrangement exists, print a single word "NO" on its own line.
输入输出样例
输入#1
4 1 1 2 2 3 3 3 1
输出#1
YES 1 YES 1 3 2 4 NO YES 1 2 3