結果

問題 No.38 赤青白ブロック
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-29 22:45:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 356 ms / 5,000 ms
コード長 1,269 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 72,676 KB
実行使用メモリ 69,328 KB
最終ジャッジ日時 2024-06-06 02:19:43
合計ジャッジ時間 10,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
69,324 KB
testcase_01 AC 312 ms
69,200 KB
testcase_02 AC 314 ms
69,152 KB
testcase_03 AC 328 ms
69,324 KB
testcase_04 AC 317 ms
69,196 KB
testcase_05 AC 346 ms
69,092 KB
testcase_06 AC 319 ms
69,184 KB
testcase_07 AC 318 ms
69,196 KB
testcase_08 AC 353 ms
69,104 KB
testcase_09 AC 331 ms
69,200 KB
testcase_10 AC 350 ms
69,196 KB
testcase_11 AC 347 ms
69,200 KB
testcase_12 AC 333 ms
69,164 KB
testcase_13 AC 350 ms
69,196 KB
testcase_14 AC 329 ms
69,140 KB
testcase_15 AC 342 ms
69,196 KB
testcase_16 AC 308 ms
69,304 KB
testcase_17 AC 319 ms
69,136 KB
testcase_18 AC 356 ms
69,184 KB
testcase_19 AC 319 ms
69,192 KB
testcase_20 AC 325 ms
69,200 KB
testcase_21 AC 315 ms
69,324 KB
testcase_22 AC 326 ms
69,324 KB
testcase_23 AC 336 ms
69,104 KB
testcase_24 AC 316 ms
69,328 KB
testcase_25 AC 347 ms
69,144 KB
testcase_26 AC 321 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstdio>
#include <cmath>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);i++)
const int INF = 1e9;

vector<string> v;

int main(void){
	int kr, kb; cin >> kr >> kb;
	string s; cin >> s;
	for (int mask = 0; mask < (1 << 20); ++mask){
		string tm = "";
		int p = 0;//20bitの位置
		for (int i = 0; i < 30; ++i){
			if(s[i] == 'W'){
				tm += 'W';
			}else{
				if(mask & (1 << p)) tm += s[i];
				p++;
			}
		}
		// cout << tm << endl;
		v.push_back(tm);
	}

	int ans = 0;
	for(auto u : v){
		bool flag = true;
		for (int i = 0; i < u.size(); ++i){
			if(u[i] == 'R'){	
				int idl = i - kr, idr = i + kr;
				if(0 <= idl){
					if(u[idl] == 'R'){
						flag = false;
						break;
					}
				}
				if(idr < u.size()){
					if(u[idr] == 'R'){
						flag = false;
						break;
					}
				}
			}else if(u[i] == 'B'){
				int idl = i - kb, idr = i + kb;
				if(0 <= idl){
					if(u[idl] == 'B'){
						flag = false;
						break;
					}
				}
				if(idr < u.size()){
					if(u[idr] == 'B'){
						flag = false;
						break;
					}
				}
			}
		}
		if(flag){
			// cout << u << endl;
			ans = max(ans, (int)u.size());
		}
	}
	printf("%d\n", ans);
	return 0;
}
0