B. Mocha and Red and Blue(codeforces#738(Div2)

简介: B. Mocha and Red and Blue(codeforces#738(Div2)

B. Mocha and Red and Blue


time limit per test


1 second


memory limit per test


256 megabytes


input


standard input


output


standard output


As their story unravels, a timeless tale is told once again...


Shirahime, a friend of Mocha's, is keen on playing the music game Arcaea and sharing Mocha interesting puzzles to solve. This day, Shirahime comes up with a new simple puzzle and wants Mocha to solve them. However, these puzzles are too easy for Mocha to solve, so she wants you to solve them and tell her the answers. The puzzles are described as follow.


There are nn squares arranged in a row, and each of them can be painted either red or blue.


Among these squares, some of them have been painted already, and the others are blank. You can decide which color to paint on each blank square.


Some pairs of adjacent squares may have the same color, which is imperfect. We define the imperfectness as the number of pairs of adjacent squares that share the same color.


For example, the imperfectness of "BRRRBBR" is 33, with "BB" occurred once and "RR" occurred twice.


Your goal is to minimize the imperfectness and print out the colors of the squares after painting.


Input


Each test contains multiple test cases.


The first line contains a single integer tt (1≤t≤1001≤t≤100) — the number of test cases. Each test case consists of two lines.


The first line of each test case contains an integer nn (1≤n≤1001≤n≤100) — the length of the squares row.


The second line of each test case contains a string ss with length nn, containing characters 'B', 'R' and '?'. Here 'B' stands for a blue square, 'R' for a red square, and '?' for a blank square.


Output


For each test case, print a line with a string only containing 'B' and 'R', the colors of the squares after painting, which imperfectness is minimized. If there are multiple solutions, print any of them.


Example


input

Copy

5

7

?R???BR

7

???R???

1

?

1

B

10

?R??RB??B?


output

Copy

BRRBRBR

BRBRBRB

B

B

BRRBRBBRBR


Note

In the first test case, if the squares are painted "BRRBRBR", the imperfectness is 11 (since squares 22 and 33 have the same color), which is the minimum possible imperfectness.


题目我们分析,就是间隔排序,为最优解。


具体实现看代码;


#include <bits/stdc++.h>
using namespace std;
const int maxn=3e5+10;
typedef long long ll;
int a[maxn],b[maxn];
string s;
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int n;
        cin>>n;
        cin>>s;
        int cnt=0;
        for(int i=0;i<n;i++)
        {
            if(s[i]=='?')
                cnt++;
        }
        if(cnt==n)
        {
            while(n--)
            {
                if(n&1)
                    cout<<"R";
                else
                    cout<<"B";
            }cout<<endl;
            continue;
        }
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<n;j++)
            {
                if(j+1<n)
                {
                    if(s[j]=='?'&&s[j+1]=='R')
                    {
                        s[j]='B';
                        break;
                    }
                    if(s[j]=='?'&&s[j+1]=='B')
                    {
                        s[j]='R';
                        break;
                    }
                }
               if(j-1>=0)
               {
                   if(s[j]=='?'&&s[j-1]=='R')
                   {
                       s[j]='B';
                       break;
                   }
                   if(s[j]=='?'&&s[j-1]=='B')
                   {
                       s[j]='R';
                       break;
                   }
               }
            }
        }
        cout<<s<<endl;
    }
    return 0;
}


相关文章
|
5月前
|
传感器 移动开发 前端开发
2D物理引擎 Box2D for javascript Games 第一章 Hello Box2D World
2D物理引擎 Box2D for javascript Games 第一章 Hello Box2D World
|
8月前
|
Java
hdu-1312-Red and Black
hdu-1312-Red and Black
37 0
|
C++
【PAT甲级 - C++题解】1135 Is It A Red-Black Tree
【PAT甲级 - C++题解】1135 Is It A Red-Black Tree
106 0
|
NoSQL JavaScript 前端开发
Figma|Generate color palette
Figma|Generate color palette
121 0
|
前端开发
每日一学—CSS overflow与text-overflow与white-space属性
CSS overflow 属性可以控制内容溢出元素框时在对应的元素区间内添加滚动条。text-overflow 属性指定当文本溢出包含它的元素时,应该如何显示。可以设置溢出后,文本被剪切、显示省略号 (...) 或显示自定义字符串(不是所有浏览器都支持)。white-space属性指定元素内的空白怎样处理。
308 0
每日一学—CSS overflow与text-overflow与white-space属性
|
机器学习/深度学习 Windows
Codeforces Round #748 (Div. 3) F - Red-Black Number (记忆化搜索)
Codeforces Round #748 (Div. 3) F - Red-Black Number (记忆化搜索)
104 0
CodeForces - 1469B Red and Blue (前缀和)
CodeForces - 1469B Red and Blue (前缀和)
104 0
hdu 1312 Red and Black
一个人从@点出发,求他所能到达的'.'的数目,'#'不可走,@本身算1个点。 思路:搜索入门题。
158 0