CF1416F.Showing Off

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Another dull quarantine day was going by when BThero decided to start researching matrices of size n×mn \times m . The rows are numerated 11 through nn from top to bottom, and the columns are numerated 11 through mm from left to right. The cell in the ii -th row and jj -th column is denoted as (i,j)(i, j) .

For each cell (i,j)(i, j) BThero had two values:

  1. The cost of the cell, which is a single positive integer.
  2. The direction of the cell, which is one of characters L, R, D, U. Those characters correspond to transitions to adjacent cells (i,j1)(i, j - 1) , (i,j+1)(i, j + 1) , (i+1,j)(i + 1, j) or (i1,j)(i - 1, j) , respectively. No transition pointed outside of the matrix.

Let us call a cell (i2,j2)(i_2, j_2) reachable from (i1,j1)(i_1, j_1) , if, starting from (i1,j1)(i_1, j_1) and repeatedly moving to the adjacent cell according to our current direction, we will, sooner or later, visit (i2,j2)(i_2, j_2) .

BThero decided to create another matrix from the existing two. For a cell (i,j)(i, j) , let us denote Si,jS_{i, j} as a set of all reachable cells from it (including (i,j)(i, j) itself). Then, the value at the cell (i,j)(i, j) in the new matrix will be equal to the sum of costs of all cells in Si,jS_{i, j} .

After quickly computing the new matrix, BThero immediately sent it to his friends. However, he did not save any of the initial matrices! Help him to restore any two valid matrices, which produce the current one.

输入格式

The first line of input file contains a single integer TT ( 1T1001 \le T \le 100 ) denoting the number of test cases. The description of TT test cases follows.

First line of a test case contains two integers nn and mm ( 1nm1051 \le n \cdot m \le 10^5 ).

Each of the following nn lines contain exactly mm integers — the elements of the produced matrix. Each element belongs to the segment [2,109][2, 10^9] .

It is guaranteed that (nm)\sum{(n \cdot m)} over all test cases does not exceed 10510^5 .

输出格式

For each test case, if an answer does not exist, print a single word NO. Otherwise, print YES and both matrices in the same format as in the input.

  • The first matrix should be the cost matrix and the second matrix should be the direction matrix.
  • All integers in the cost matrix should be positive.
  • All characters in the direction matrix should be valid. No direction should point outside of the matrix.

输入输出样例

  • 输入#1

    2
    3 4
    7 6 7 8
    5 5 4 4
    5 7 4 4
    1 1
    5

    输出#1

    YES
    1 1 1 1
    2 1 1 1
    3 2 1 1
    R D L L
    D R D L
    U L R U
    NO
首页