結果

問題 No.38 赤青白ブロック
ユーザー maine_honzukimaine_honzuki
提出日時 2020-05-06 21:48:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 5,000 ms
コード長 1,636 bytes
コンパイル時間 1,582 ms
コンパイル使用メモリ 169,292 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 09:10:15
合計ジャッジ時間 7,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
6,812 KB
testcase_01 AC 174 ms
6,940 KB
testcase_02 AC 175 ms
6,944 KB
testcase_03 AC 200 ms
6,944 KB
testcase_04 AC 185 ms
6,944 KB
testcase_05 AC 212 ms
6,940 KB
testcase_06 AC 180 ms
6,940 KB
testcase_07 AC 178 ms
6,940 KB
testcase_08 AC 223 ms
6,944 KB
testcase_09 AC 194 ms
6,944 KB
testcase_10 AC 227 ms
6,944 KB
testcase_11 AC 221 ms
6,940 KB
testcase_12 AC 198 ms
6,940 KB
testcase_13 AC 217 ms
6,940 KB
testcase_14 AC 203 ms
6,944 KB
testcase_15 AC 201 ms
6,940 KB
testcase_16 AC 170 ms
6,940 KB
testcase_17 AC 183 ms
6,940 KB
testcase_18 AC 198 ms
6,944 KB
testcase_19 AC 187 ms
6,940 KB
testcase_20 AC 187 ms
6,944 KB
testcase_21 AC 169 ms
6,944 KB
testcase_22 AC 178 ms
6,944 KB
testcase_23 AC 226 ms
6,944 KB
testcase_24 AC 177 ms
6,940 KB
testcase_25 AC 204 ms
6,944 KB
testcase_26 AC 195 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int Kr, Kb;
    string S;
    cin >> Kr >> Kb >> S;

    int ans = 0;
    for (int bit_r = 0; bit_r < (1 << 10); bit_r++) {
        for (int bit_b = 0; bit_b < (1 << 10); bit_b++) {
            int now_r = 0, now_b = 0;
            string s;
            for (auto& c : S) {
                if (c == 'R') {
                    if (!(bit_r & 1 << now_r))
                        s.push_back('R');
                    now_r++;
                } else if (c == 'B') {
                    if (!(bit_b & 1 << now_b))
                        s.push_back('B');
                    now_b++;
                } else
                    s.push_back('W');
            }

            bool flag = true;
            for (int i = 0; i < 30; i++) {
                int c = s[i];
                if (c == 'R') {
                    if (i - Kr >= 0) {
                        if (s[i - Kr] == 'R')
                            flag = false;
                    }
                    if (i + Kr < 30)
                        if (s[i + Kr] == 'R')
                            flag = false;
                }
                if (c == 'B') {
                    if (i - Kb >= 0) {
                        if (s[i - Kb] == 'B')
                            flag = false;
                    }
                    if (i + Kb < 30)
                        if (s[i + Kb] == 'B')
                            flag = false;
                }
                if (!flag)
                    break;
            }
            if (flag) ans = max(ans, int(s.size()));
        }
    }
    cout << ans << endl;
}
0