結果

問題 No.38 赤青白ブロック
ユーザー ttkkggwwttkkggww
提出日時 2022-03-31 10:42:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 806 bytes
コンパイル時間 4,853 ms
コンパイル使用メモリ 268,560 KB
実行使用メモリ 1,188,096 KB
最終ジャッジ日時 2024-11-16 13:31:46
合計ジャッジ時間 116,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 573 ms
61,224 KB
testcase_02 MLE -
testcase_03 AC 4,103 ms
398,336 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 4,008 ms
376,704 KB
testcase_15 TLE -
testcase_16 AC 239 ms
24,960 KB
testcase_17 AC 3,000 ms
327,936 KB
testcase_18 AC 4,810 ms
508,288 KB
testcase_19 AC 2,397 ms
270,336 KB
testcase_20 AC 1,400 ms
142,592 KB
testcase_21 AC 1,620 ms
146,944 KB
testcase_22 AC 276 ms
24,576 KB
testcase_23 TLE -
testcase_24 AC 1,766 ms
170,624 KB
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int r,b;
string s;

bool chk(string &s){
	bool is = true;
	for(int i = 0;i<s.size();i++){
		if(s[i]=='W')continue;
		int l = i - (s[i]=='R'?r:b);
		if(l>=0){
			if(s[i]==s[l])is=false;
		}
	}
	return is;
}

void solve(){
	set<string> st;
	st.insert("");
	for(int i = 0;i<30;i++){
		set<string> nst;
		for(auto &j:st){
			auto t = j;
			if(chk(t)){
				nst.insert(t);
			}
			t.push_back(s[i]);
			if(chk(t)){
				nst.insert(t);
			}
		}
		//cout<<nst.size()<<endl;
		swap(st,nst);
	}
	int ans = 0;
	//cout<<st.size()<<endl;
	for(auto &i:st)ans=max(ans,(int)i.size());
	cout<<ans<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> r >> b;
	cin >> s;
	solve();
}
0