A. Red Versus Blue

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

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

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 n where the i-th character denotes who won the i-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 3 times in a row, which is the maximum.

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

Input
The first line contains a single integer t (1≤t≤1000) — the number of test cases.

Each test case has a single line containing three integers n, r, and b (3≤n≤100; 1≤b<r≤n, r+b=n).

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

Examples
input

3
7 4 3
6 5 1
19 13 6

output

RBRBRBR
RRRBRR
RRBRRBRRBRRBRRBRRBR

input

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

output

RBR
RRBRBRBRBR
RBRBRBRBRBR
RRRRRBRRRR
RRRBRRRBRR
RRRBRRRBRRR

Note
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 1. 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 2, given by RR at the beginning. We cannot minimize the answer any further.

AC代码:

#include<bits/stdc++.h>
using namespace std;
int t, n, r, b;
int main() {
	cin >>t;
	while (t--) {
		cin >> n >> r >> b;
		int temp = r / (b + 1);
		int yu = r - (b + 1) * temp; 
		string str = "";
		for (int i = 1; i <= b + 1; i++) {
			for (int j = 1; j <= temp; j++) str += 'R';
			if (yu-- > 0) str += 'R';
			if (i != b + 1) str += 'B'; 
		}
		cout << str << endl;
	} 
	return 0;
} 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值