C/C++教程

B. Mocha and Red and Blue(900)

本文主要是介绍B. Mocha and Red and Blue(900),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<bits/stdc++.h>
using namespace std;
int main(){
    int n,m,flag;
    string s;
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>m;
        cin>>s;
        flag=0;
        int len=s.size();
        for(int i=0;i<len;i++){
            if(s[i]!='?') flag=1;
        }
        for(int i=1;i<len;i++){
            if(s[i]=='?'){
                if(s[i-1]=='B')s[i]='R';
                if(s[i-1]=='R')s[i]='B';
            }
        }
        for(int i=len-2;i>=0;i--){
            if(s[i]=='?'){
                if(s[i+1]=='B')s[i]='R';
                if(s[i+1]=='R')s[i]='B';
            }
        }
        if(flag==0){
            for(int i=0;i<len;i++){
                if(i%2==0) s[i]='B';
                else s[i]='R';
            }
        }
        cout<<s<<endl;
    }
    return 0;
}

 

这篇关于B. Mocha and Red and Blue(900)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!