結果

問題 No.38 赤青白ブロック
ユーザー atn112323atn112323
提出日時 2016-05-08 13:19:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 807 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 59,532 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 13:01:17
合計ジャッジ時間 6,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
5,248 KB
testcase_01 AC 172 ms
5,248 KB
testcase_02 AC 171 ms
5,248 KB
testcase_03 AC 179 ms
5,248 KB
testcase_04 AC 179 ms
5,248 KB
testcase_05 AC 204 ms
5,248 KB
testcase_06 AC 173 ms
5,248 KB
testcase_07 AC 174 ms
5,248 KB
testcase_08 AC 208 ms
5,248 KB
testcase_09 AC 188 ms
5,248 KB
testcase_10 AC 197 ms
5,248 KB
testcase_11 AC 194 ms
5,248 KB
testcase_12 AC 182 ms
5,248 KB
testcase_13 AC 200 ms
5,248 KB
testcase_14 AC 186 ms
5,248 KB
testcase_15 AC 200 ms
5,248 KB
testcase_16 AC 161 ms
5,248 KB
testcase_17 AC 173 ms
5,248 KB
testcase_18 AC 199 ms
5,248 KB
testcase_19 AC 176 ms
5,248 KB
testcase_20 AC 188 ms
5,248 KB
testcase_21 AC 168 ms
5,248 KB
testcase_22 AC 195 ms
5,248 KB
testcase_23 AC 193 ms
5,248 KB
testcase_24 AC 174 ms
5,248 KB
testcase_25 AC 190 ms
5,248 KB
testcase_26 AC 182 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <string>

using namespace std;

int Kr, Kb;
string S;

bool check(const string& str) {
	for (int i = 0; i < str.length(); i++) {
		if (str[i] == 'R' && i + Kr < str.length() && str[i + Kr] == 'R') {
			return false;
		}
		if (str[i] == 'B' && i + Kb < str.length() && str[i + Kb] == 'B') {
			return false;
		}
	}
	return true;
}

int main() {
	cin >> Kr >> Kb >> S;
	int s = 0;
	for (int i = 0; i < S.length(); i++) {
		if (S[i] != 'W') {
			s |= (1 << i);
		}
	}
	int res = 0;
	int comb = s;
	do {
		string str;
		for (int i = 0; i < S.length(); i++) {
			if (((comb >> i) & 1) == 0) {
				str += S[i];
			}
		}
		if (check(str)) {
			res = max(res, (int)str.length());
		}
		comb = (comb - 1) & s;
	} while (comb != s);
	cout << res << endl;
	return 0;
}
0