CF1606D.Red-Blue Matrix
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a matrix, consisting of n rows and m columns. The j -th cell of the i -th row contains an integer aij .
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 k ( 1≤k<m ) and cut the colored matrix in such a way that the first k columns become a separate matrix (the left matrix) and the last m−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 t ( 1≤t≤1000 ) — the number of testcases.
Then the descriptions of t testcases follow.
The first line of each testcase contains two integers n and m ( 2≤n,m≤5⋅105 ; n⋅m≤106 ) — the number of rows and the number of columns in the matrix, respectively.
The i -th of the next n lines contains m integers ai1,ai2,…,aim ( 1≤aij≤106 ).
The sum of n⋅m over all testcases doesn't exceed 106 .
输出格式
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 n characters: the i -th character should be 'R' if the i -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 k ( 1≤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: