309162: CF1634C. OKEA

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

OKEA

题意翻译

你有一个 $n\times k$ 的网格,你需要将 $[1,n\times m]$ 内的所有整数不重不漏地填入网格中,使得对于每一行 $i$,都有对于所有的 $1\leqslant l,r\leqslant m$,都有 $(r-l+1)\mid\sum\limits_{j=1}^r a_{i,j}$ 成立。请给出一种填数方式,如果不存在满足要求的填数方式,输出 `-1`。 数据范围: - $t$ 组数据,$1\leqslant t\leqslant 500$。 - $1\leqslant n,k,\sum n,\sum k\leqslant 500$。 Translated by Eason_AC 2022.2.9

题目描述

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 \cdot 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 $ a_{i,j} $ the price of $ j $ -th item (counting from the left) on the $ i $ -th shelf, $ 1 \le i \le n, 1 \le j \le k $ . Occasionally robots get curious and ponder on the following question: what is the mean price (arithmetic average) of items $ a_{i,l}, a_{i,l+1}, \ldots, a_{i,r} $ for some shelf $ i $ and indices $ l \le 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 \cdot 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 \le t \le 500 $ ) — the number of test cases. The first and only line of each test case contains two integers $ n $ and $ k $ ( $ 1 \le n, k \le 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 \cdot 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

Input

题意翻译

你有一个 $n\times k$ 的网格,你需要将 $[1,n\times m]$ 内的所有整数不重不漏地填入网格中,使得对于每一行 $i$,都有对于所有的 $1\leqslant l,r\leqslant m$,都有 $(r-l+1)\mid\sum\limits_{j=1}^r a_{i,j}$ 成立。请给出一种填数方式,如果不存在满足要求的填数方式,输出 `-1`。 数据范围: - $t$ 组数据,$1\leqslant t\leqslant 500$。 - $1\leqslant n,k,\sum n,\sum k\leqslant 500$。 Translated by Eason_AC 2022.2.9

加入题单

算法标签: