結果

問題 No.38 赤青白ブロック
ユーザー cielciel
提出日時 2014-12-02 03:14:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 56,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 01:58:02
合計ジャッジ時間 5,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
5,248 KB
testcase_01 AC 119 ms
5,376 KB
testcase_02 AC 143 ms
5,376 KB
testcase_03 AC 141 ms
5,376 KB
testcase_04 AC 106 ms
5,376 KB
testcase_05 AC 177 ms
5,376 KB
testcase_06 AC 109 ms
5,376 KB
testcase_07 AC 111 ms
5,376 KB
testcase_08 AC 177 ms
5,376 KB
testcase_09 AC 110 ms
5,376 KB
testcase_10 AC 184 ms
5,376 KB
testcase_11 AC 174 ms
5,376 KB
testcase_12 AC 150 ms
5,376 KB
testcase_13 AC 181 ms
5,376 KB
testcase_14 AC 150 ms
5,376 KB
testcase_15 AC 176 ms
5,376 KB
testcase_16 AC 63 ms
5,376 KB
testcase_17 AC 135 ms
5,376 KB
testcase_18 AC 177 ms
5,376 KB
testcase_19 AC 165 ms
5,376 KB
testcase_20 AC 120 ms
5,376 KB
testcase_21 AC 118 ms
5,376 KB
testcase_22 AC 106 ms
5,376 KB
testcase_23 AC 182 ms
5,376 KB
testcase_24 AC 91 ms
5,376 KB
testcase_25 AC 164 ms
5,376 KB
testcase_26 AC 170 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(){
	int Kr,Kb,R=0;
	string s;
	cin>>Kr>>Kb>>s;
	for(int i=0;i<1<<10;i++)for(int j=0;j<1<<10;j++){
		string t;
		int k=0,r=0,b=0;
		for(;k<s.size();k++){
			if(s[k]=='R'){
				if(i&(1<<r)){
					if(t.size()>=Kr&&t[t.size()-Kr]=='R')break;
					t+='R';
				}
				r++;
			}else if(s[k]=='B'){
				if(j&(1<<b)){
					if(t.size()>=Kb&&t[t.size()-Kb]=='B')break;
					t+='B';
				}
				b++;
			}else if(s[k]=='W'){
				t+='W';
			}
		}
		if(k==s.size())R=max(R,(int)t.size());
	}
	cout<<R<<endl;
}
0