CF1659A.Red Versus Blue

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Team Red and Team Blue competed in a competitive FPS. Their match was streamed around the world. They played a series of nn matches.

In the end, it turned out Team Red won rr times and Team Blue won bb times. Team Blue was less skilled than Team Red, so bb was strictly less than rr .

You missed the stream since you overslept, but you think that the match must have been neck and neck since so many people watched it. So you imagine a string of length nn where the ii -th character denotes who won the ii -th match — it is R if Team Red won or B if Team Blue won. You imagine the string was such that the maximum number of times a team won in a row was as small as possible. For example, in the series of matches RBBRRRB, Team Red won 33 times in a row, which is the maximum.

You must find a string satisfying the above conditions. If there are multiple answers, print any.

输入格式

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

Each test case has a single line containing three integers nn , rr , and bb ( 3n1003 \leq n \leq 100 ; 1b<rn1 \leq b < r \leq n , r+b=nr+b=n ).

输出格式

For each test case, output a single line containing a string satisfying the given conditions. If there are multiple answers, print any.

输入输出样例

  • 输入#1

    3
    7 4 3
    6 5 1
    19 13 6

    输出#1

    RBRBRBR
    RRRBRR
    RRBRRBRRBRRBRRBRRBR
  • 输入#2

    6
    3 2 1
    10 6 4
    11 6 5
    10 9 1
    10 8 2
    11 9 2

    输出#2

    RBR
    RRBRBRBRBR
    RBRBRBRBRBR
    RRRRRBRRRR
    RRRBRRRBRR
    RRRBRRRBRRR

说明/提示

The first test case of the first example gives the optimal answer for the example in the statement. The maximum number of times a team wins in a row in RBRBRBR is 11 . We cannot minimize it any further.

The answer for the second test case of the second example is RRBRBRBRBR. The maximum number of times a team wins in a row is 22 , given by RR at the beginning. We cannot minimize the answer any further.

首页