結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
6,812 KB
testcase_01 AC 311 ms
6,940 KB
testcase_02 AC 312 ms
6,944 KB
testcase_03 AC 316 ms
6,940 KB
testcase_04 AC 321 ms
6,940 KB
testcase_05 AC 336 ms
6,940 KB
testcase_06 AC 310 ms
6,940 KB
testcase_07 AC 319 ms
6,944 KB
testcase_08 AC 338 ms
6,940 KB
testcase_09 AC 326 ms
6,940 KB
testcase_10 AC 330 ms
6,944 KB
testcase_11 AC 326 ms
6,944 KB
testcase_12 AC 315 ms
6,940 KB
testcase_13 AC 338 ms
6,940 KB
testcase_14 AC 324 ms
6,940 KB
testcase_15 AC 332 ms
6,940 KB
testcase_16 AC 291 ms
6,940 KB
testcase_17 AC 304 ms
6,944 KB
testcase_18 AC 318 ms
6,944 KB
testcase_19 AC 304 ms
6,940 KB
testcase_20 AC 324 ms
6,940 KB
testcase_21 AC 295 ms
6,940 KB
testcase_22 AC 326 ms
6,944 KB
testcase_23 AC 317 ms
6,944 KB
testcase_24 AC 293 ms
6,944 KB
testcase_25 AC 316 ms
6,940 KB
testcase_26 AC 306 ms
6,940 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