結果

問題 No.38 赤青白ブロック
ユーザー momoyuumomoyuu
提出日時 2024-07-28 01:53:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 1,775 ms
コンパイル使用メモリ 110,680 KB
実行使用メモリ 57,600 KB
最終ジャッジ日時 2024-07-28 01:53:28
合計ジャッジ時間 5,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
6,812 KB
testcase_01 AC 57 ms
10,496 KB
testcase_02 AC 98 ms
14,720 KB
testcase_03 AC 66 ms
12,800 KB
testcase_04 AC 53 ms
9,984 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 340 ms
39,808 KB
testcase_07 AC 260 ms
33,792 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 230 ms
28,800 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 57 ms
10,880 KB
testcase_16 AC 71 ms
11,520 KB
testcase_17 AC 82 ms
13,952 KB
testcase_18 AC 32 ms
7,808 KB
testcase_19 AC 25 ms
6,940 KB
testcase_20 AC 113 ms
17,792 KB
testcase_21 AC 151 ms
20,736 KB
testcase_22 AC 41 ms
8,192 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 434 ms
57,600 KB
testcase_25 AC 96 ms
15,744 KB
testcase_26 AC 20 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<set>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int a,b;
    cin>>a>>b;
    set<pair<string,int>> memo;
    int ans = 0;
    
    auto dfs = [&](auto dfs,string s,int ni) -> void {
        if(memo.count(make_pair(s,ni))) return;
        memo.insert(make_pair(s,ni));
        bool fn = true;
        for(int i = 0;i<s.size();i++){
            if(i+a<s.size()&&s[i]=='R'&&s[i+a]=='R') fn = false;
            if(i+b<s.size()&&s[i]=='B'&&s[i+b]=='B') fn = false;
            if(!fn) break;
        }

        if(fn){
        
            ans = max<int>(ans,s.size());
            return;
        }
        if(ni+1<s.size()) dfs(dfs,s,ni+1);
        if(s[ni]=='W') return;
        string t;
        for(int i = 0;i<s.size();i++) if(i!=ni) t += s[i];
        dfs(dfs,t,ni);
    };
    string s;
    cin>>s;
    dfs(dfs,s,0);
    cout<<ans<<endl;

}

0