結果

問題 No.38 赤青白ブロック
ユーザー kyuridenamidakyuridenamida
提出日時 2016-02-11 11:19:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 1,052 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 162,916 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 02:12:05
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
5,248 KB
testcase_01 AC 303 ms
5,376 KB
testcase_02 AC 289 ms
5,376 KB
testcase_03 AC 293 ms
5,376 KB
testcase_04 AC 280 ms
5,376 KB
testcase_05 AC 248 ms
5,376 KB
testcase_06 AC 289 ms
5,376 KB
testcase_07 AC 310 ms
5,376 KB
testcase_08 AC 251 ms
5,376 KB
testcase_09 AC 271 ms
5,376 KB
testcase_10 AC 249 ms
5,376 KB
testcase_11 AC 247 ms
5,376 KB
testcase_12 AC 262 ms
5,376 KB
testcase_13 AC 249 ms
5,376 KB
testcase_14 AC 293 ms
5,376 KB
testcase_15 AC 255 ms
5,376 KB
testcase_16 AC 296 ms
5,376 KB
testcase_17 AC 291 ms
5,376 KB
testcase_18 AC 251 ms
5,376 KB
testcase_19 AC 264 ms
5,376 KB
testcase_20 AC 289 ms
5,376 KB
testcase_21 AC 302 ms
5,376 KB
testcase_22 AC 263 ms
5,376 KB
testcase_23 AC 246 ms
5,376 KB
testcase_24 AC 304 ms
5,376 KB
testcase_25 AC 272 ms
5,376 KB
testcase_26 AC 277 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++)
#define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++)
#define all(n) (n).begin(),(n).end()
typedef vector<int> Vi;
typedef vector<Vi> VVi;
typedef pair<long long,long long> Pii;
typedef vector<Pii> VPii;


int main(){
	int Kr,Kb;
	string S;
	cin >> Kr >> Kb;
	cin >> S;
	Vi p;
	int ans = 0;
	for(int i = 0 ; i < S.size() ; i++) if( S[i] != 'W' ) p.push_back(i);
	for(int i = 0 ; i < (1<<p.size()) ; i++){
		string T = S;
		for(int j = 0 ; j < p.size() ; j++){
			if( i >> j & 1 ) T[p[j]] = '#';
		}
		T.erase(remove(T.begin(),T.end(),'#'),T.end());
		int ok = 1;
		for(int j = 0 ; j < T.size() ; j++){
			if( j - Kr >= 0 && T[j-Kr] == 'R' && T[j] == 'R' ) ok = 0; 
			if( j - Kb >= 0 && T[j-Kb] == 'B' && T[j] == 'B' ) ok = 0; 
			if( j + Kr < T.size() && T[j+Kr] == 'R' && T[j] == 'R' ) ok = 0; 
			if( j + Kb < T.size() && T[j+Kb] == 'B' && T[j] == 'B' ) ok = 0; 
		}
		if(ok)ans = max(ans,(int)T.size());
	}
	cout << ans << endl;
}
0