CF1266C.Diverse Matrix

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Let aa be a matrix of size r×cr \times c containing positive integers, not necessarily distinct. Rows of the matrix are numbered from 11 to rr , columns are numbered from 11 to cc . We can construct an array bb consisting of r+cr + c integers as follows: for each i[1,r]i \in [1, r] , let bib_i be the greatest common divisor of integers in the ii -th row, and for each j[1,c]j \in [1, c] let br+jb_{r+j} be the greatest common divisor of integers in the jj -th column.

We call the matrix diverse if all r+cr + c numbers bkb_k ( k[1,r+c]k \in [1, r + c] ) are pairwise distinct.

The magnitude of a matrix equals to the maximum of bkb_k .

For example, suppose we have the following matrix:

(297414484)\begin{pmatrix} 2 & 9 & 7\\ 4 & 144 & 84 \end{pmatrix} We construct the array bb :

  1. b1b_1 is the greatest common divisor of 22 , 99 , and 77 , that is 11 ;
  2. b2b_2 is the greatest common divisor of 44 , 144144 , and 8484 , that is 44 ;
  3. b3b_3 is the greatest common divisor of 22 and 44 , that is 22 ;
  4. b4b_4 is the greatest common divisor of 99 and 144144 , that is 99 ;
  5. b5b_5 is the greatest common divisor of 77 and 8484 , that is 77 .

So b=[1,4,2,9,7]b = [1, 4, 2, 9, 7] . All values in this array are distinct, so the matrix is diverse. The magnitude is equal to 99 .

For a given rr and cc , find a diverse matrix that minimises the magnitude. If there are multiple solutions, you may output any of them. If there are no solutions, output a single integer 00 .

输入格式

The only line in the input contains two space separated integers rr and cc ( 1r,c5001 \leq r,c \leq 500 ) — the number of rows and the number of columns of the matrix to be found.

输出格式

If there is no solution, output a single integer 00 .

Otherwise, output rr rows. The ii -th of them should contain cc space-separated integers, the jj -th of which is ai,ja_{i,j} — the positive integer in the ii -th row and jj -th column of a diverse matrix minimizing the magnitude.

Furthermore, it must hold that 1ai,j1091 \leq a_{i,j} \leq 10^9 . It can be shown that if a solution exists, there is also a solution with this additional constraint (still having minimum possible magnitude).

输入输出样例

  • 输入#1

    2 2
    

    输出#1

    4 12
    2 9
  • 输入#2

    1 1
    

    输出#2

    0
    

说明/提示

In the first example, the GCDs of rows are b1=4b_1 = 4 and b2=1b_2 = 1 , and the GCDs of columns are b3=2b_3 = 2 and b4=3b_4 = 3 . All GCDs are pairwise distinct and the maximum of them is 44 . Since the GCDs have to be distinct and at least 11 , it is clear that there are no diverse matrices of size 2×22 \times 2 with magnitude smaller than 44 .

In the second example, no matter what a1,1a_{1,1} is, b1=b2b_1 = b_2 will always hold, so there are no diverse matrices.

首页