CF1662M.Bottle Arrangements
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Each test contains multiple test cases. The first line contains an integer t ( 1≤t≤100 ) — the number of test cases. The descriptions of the t test cases follow.
The first line of each test case contains two integers n and m ( 1≤n≤100 , 1≤m≤100 ) — the number of bottles of wine and the number of critics.
Each of the next m lines contains two integers ri and wi ( 0≤ri,wi≤100 , ri+wi≥1 ) — the number of red and white wines that the i -th critic wants to taste.
输入格式
For each test case, if at least one solution exists, print a string of length n made up of the characters R and W, where the j -th character ( 1≤j≤n ) denotes the type of the wine in the j -th bottle of the arrangement (R for red and W for white). If there are multiple solutions, print any.
If no solution exists, print the string IMPOSSIBLE.
输出格式
In the first test case, there are n=5 bottles of wine to be arranged and m=3 critics. The arrangement RWRRW satisfies the requests of all three critics. Indeed:
- the first critic can choose the interval [3,3] , which contains exactly one bottle of red wine (note that [1,1] and [4,4] are other valid choices);
- the second critic can choose the interval [1,5] , which contains 3 bottles of red wine and 2 bottles of white wine;
- the third critic can choose the interval [2,5] , which contains 2 bottles of red wine and 2 bottles of white wine.
输入输出样例
输入#1
3 5 3 1 0 3 2 2 2 4 3 2 1 1 1 0 3 3 2 0 2 0 3
输出#1
RWRRW IMPOSSIBLE WWW
说明/提示
In the first test case, there are n=5 bottles of wine to be arranged and m=3 critics. The arrangement RWRRW satisfies the requests of all three critics. Indeed:
- the first critic can choose the interval [3,3] , which contains exactly one bottle of red wine (note that [1,1] and [4,4] are other valid choices);
- the second critic can choose the interval [1,5] , which contains 3 bottles of red wine and 2 bottles of white wine;
- the third critic can choose the interval [2,5] , which contains 2 bottles of red wine and 2 bottles of white wine.