308695: CF1559B. Mocha and Red and Blue

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Mocha and Red and Blue

题意翻译

给定长为 $n$ 的仅由 $\texttt{R}$、$\texttt{B}$、$\texttt{?}$ 组成的字符串 $S$,请你在 $\texttt{?}$ 处填入 $\texttt{R}$ 或 $\texttt{B}$,使得相邻位置字符相同的数量最少。 译者 @_ajthreac_

题目描述

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 $ n $ 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 $ 3 $ , 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.

输入输出格式

输入格式


Each test contains multiple test cases. The first line contains a single integer $ t $ ( $ 1 \le t \le 100 $ ) — the number of test cases. Each test case consists of two lines. The first line of each test case contains an integer $ n $ ( $ 1\leq n\leq 100 $ ) — the length of the squares row. The second line of each test case contains a string $ s $ with length $ n $ , containing characters 'B', 'R' and '?'. Here 'B' stands for a blue square, 'R' for a red square, and '?' for a blank square.

输出格式


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.

输入输出样例

输入样例 #1

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

输出样例 #1

BRRBRBR
BRBRBRB
B
B
BRRBRBBRBR

说明

In the first test case, if the squares are painted "BRRBRBR", the imperfectness is $ 1 $ (since squares $ 2 $ and $ 3 $ have the same color), which is the minimum possible imperfectness.

Input

题意翻译

给定长为 $n$ 的仅由 $\texttt{R}$、$\texttt{B}$、$\texttt{?}$ 组成的字符串 $S$,请你在 $\texttt{?}$ 处填入 $\texttt{R}$ 或 $\texttt{B}$,使得相邻位置字符相同的数量最少。 译者 @_ajthreac_

加入题单

算法标签: