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;
}


相关文章
|
3月前
|
传感器 移动开发 前端开发
2D物理引擎 Box2D for javascript Games 第一章 Hello Box2D World
2D物理引擎 Box2D for javascript Games 第一章 Hello Box2D World
|
6月前
|
Java
hdu-1312-Red and Black
hdu-1312-Red and Black
33 0
CSS3 box-sizing 简单案例
CSS3 box-sizing 简单案例
34 1
|
NoSQL JavaScript 前端开发
|
机器学习/深度学习 Windows
Codeforces Round #748 (Div. 3) F - Red-Black Number (记忆化搜索)
Codeforces Round #748 (Div. 3) F - Red-Black Number (记忆化搜索)
101 0
CodeForces - 1469B Red and Blue (前缀和)
CodeForces - 1469B Red and Blue (前缀和)
97 0
HDOJ 1326 Box of Bricks(简单题)
HDOJ 1326 Box of Bricks(简单题)
106 0
HDOJ 1326 Box of Bricks(简单题)
|
前端开发 JavaScript 容器
有趣的 box-decoration-break
有趣的 box-decoration-break
169 0