CF1606D.Red-Blue Matrix

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a matrix, consisting of nn rows and mm columns. The jj -th cell of the ii -th row contains an integer aija_{ij} .

First, you have to color each row of the matrix either red or blue in such a way that at least one row is colored red and at least one row is colored blue.

Then, you have to choose an integer kk ( 1k<m1 \le k < m ) and cut the colored matrix in such a way that the first kk columns become a separate matrix (the left matrix) and the last mkm-k columns become a separate matrix (the right matrix).

The coloring and the cut are called perfect if two properties hold:

  • every red cell in the left matrix contains an integer greater than every blue cell in the left matrix;
  • every blue cell in the right matrix contains an integer greater than every red cell in the right matrix.

Find any perfect coloring and cut, or report that there are none.

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of testcases.

Then the descriptions of tt testcases follow.

The first line of each testcase contains two integers nn and mm ( 2n,m51052 \le n, m \le 5 \cdot 10^5 ; nm106n \cdot m \le 10^6 ) — the number of rows and the number of columns in the matrix, respectively.

The ii -th of the next nn lines contains mm integers ai1,ai2,,aima_{i1}, a_{i2}, \dots, a_{im} ( 1aij1061 \le a_{ij} \le 10^6 ).

The sum of nmn \cdot m over all testcases doesn't exceed 10610^6 .

输出格式

For each testcase print an answer. If there are no perfect colorings and cuts in the matrix, then print "NO".

Otherwise, first, print "YES". Then a string, consisting of nn characters: the ii -th character should be 'R' if the ii -th row is colored red and 'B' if it's colored blue. The string should contain at least one 'R' and at least one 'B'. Finally, print an integer kk ( 1k<m1 \le k < m ) — the number of columns from the left that are cut.

输入输出样例

  • 输入#1

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

    输出#1

    YES
    BRBRB 1
    NO
    YES
    RB 3

说明/提示

The coloring and the cut for the first testcase:

首页