結果

問題 No.38 赤青白ブロック
ユーザー finefine
提出日時 2017-01-10 00:29:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 920 bytes
コンパイル時間 1,438 ms
コンパイル使用メモリ 171,536 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 13:06:37
合計ジャッジ時間 10,698 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
5,248 KB
testcase_01 AC 300 ms
5,248 KB
testcase_02 AC 288 ms
5,248 KB
testcase_03 AC 297 ms
5,248 KB
testcase_04 AC 295 ms
5,248 KB
testcase_05 AC 307 ms
5,248 KB
testcase_06 AC 291 ms
5,248 KB
testcase_07 AC 288 ms
5,248 KB
testcase_08 AC 316 ms
5,248 KB
testcase_09 AC 301 ms
5,248 KB
testcase_10 AC 306 ms
5,248 KB
testcase_11 AC 313 ms
5,248 KB
testcase_12 AC 292 ms
5,248 KB
testcase_13 AC 315 ms
5,248 KB
testcase_14 AC 296 ms
5,248 KB
testcase_15 AC 308 ms
5,248 KB
testcase_16 AC 283 ms
5,248 KB
testcase_17 AC 292 ms
5,248 KB
testcase_18 AC 319 ms
5,248 KB
testcase_19 AC 301 ms
5,248 KB
testcase_20 AC 307 ms
5,248 KB
testcase_21 AC 286 ms
5,248 KB
testcase_22 AC 316 ms
5,248 KB
testcase_23 AC 300 ms
5,248 KB
testcase_24 AC 281 ms
5,248 KB
testcase_25 AC 304 ms
5,248 KB
testcase_26 AC 293 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int kr, kb;
	string s;
	cin >> kr >> kb >> s;
	vector<int> a;
	for (int i = 0; i < 30; i++) {
		if (s[i] != 'W') a.push_back(i);
	}
	int ans = 0;
	for (int i = 0; i < (1 << 20); i++) {
		vector<int> used(30, true);
		for (int j = 0; j < 20; j++) {
			if (i & (1 << j)) used[a[j]] = false;
		}
		string s1 = "";
		for (int j = 0; j < 30; j++) {
			if (used[j]) s1 += s[j];
		}
		bool flag = true;
		for (int j = 0; j < s1.length(); j++) {
			if (s1[j] == 'W') continue;
			else if (s1[j] == 'R') {
				if (j + kr >= s1.length()) continue;
				if (s1[j + kr] == 'R') {
					flag = false;
					break;
				}
			} else {
				if (j + kb >= s1.length()) continue;
				if (s1[j + kb] == 'B') {
					flag = false;
					break;
				}
			}
		}
		if (flag) ans = max(ans, (int)s1.length());
	}
	cout << ans << endl;
	return 0;
}
0