Codeforces-1559B (思维题)

1.题目引入:

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.

2.样例输出: 

Input

5
7
?R???BR
7
???R???
1
?
1
B
10
?R??RB??B?

Output

BRRBRBR
BRBRBRB
B
B
BRRBRBBRBR

Note

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

题目大意:给定一个字符串需要将 ?改为 ‘R’ 或 ‘B’,保证连续的字符串降到最小, 可以将字符串从前到后推,再将他们从后往前推,但这两种做法都需要第一个字符不是 ‘ ?’,具体操作如下:

3.代码如下: 

#include<iostream>
#include<algorithm>
#include<string>
#include<cstring>
using namespace std;
int main()
{
	ios::sync_with_stdio(false); 
	int n;
	cin>>n;
	while(n--)
	{
		int t;
		string s="";
		cin>>t;
		cin>>s;
		for(int i=1;i<t;i++)   // 由前推后 
		{
			if(s[i]=='R'||s[i]=='B')
			{
			//	i++;
				continue;
			}
			else
			{
				if(s[i-1]=='B') s[i]='R';
				if(s[i-1]=='R') s[i]='B'; 
			}
		}
		for(int i=t-2;i>=0;i--)  // 由后推前 
		{
			if(s[i]=='R'||s[i]=='B')
			{
				continue;
			}
			else
			{
				if(s[i+1]=='B') s[i]='R';
				if(s[i+1]=='R') s[i]='B'; 
		    }
		}
		if(s[0]=='?')   // 显然前两种都必须是第一个字符和第二个字符都不是 "?" 
		{
			for(int i=0;i<t;i++)
			{
				if(i&1) cout<<"R";
				else    
				{
					cout<<"B";
				}
			}
			cout<<"\n";
			continue;
		}
		else
		 cout<<s<<"\n";
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

风遥~

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值