結果

問題 No.38 赤青白ブロック
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-09-29 21:31:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 880 ms / 5,000 ms
コード長 1,449 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 178,088 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-06-06 02:17:56
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,812 KB
testcase_01 AC 85 ms
6,940 KB
testcase_02 AC 386 ms
12,800 KB
testcase_03 AC 189 ms
8,448 KB
testcase_04 AC 49 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 570 ms
16,000 KB
testcase_07 AC 748 ms
20,224 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 357 ms
12,032 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 91 ms
6,940 KB
testcase_16 AC 94 ms
6,940 KB
testcase_17 AC 171 ms
7,680 KB
testcase_18 AC 32 ms
6,944 KB
testcase_19 AC 49 ms
6,944 KB
testcase_20 AC 197 ms
8,448 KB
testcase_21 AC 315 ms
10,752 KB
testcase_22 AC 51 ms
6,944 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 880 ms
23,040 KB
testcase_25 AC 336 ms
11,520 KB
testcase_26 AC 60 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

namespace {

    typedef double real;
    typedef long long ll;

    template<class T> ostream& operator<<(ostream& os, const vector<T>& vs) {
        if (vs.empty()) return os << "[]";
        auto i = vs.begin();
        os << "[" << *i;
        for (++i; i != vs.end(); ++i) os << " " << *i;
        return os << "]";
    }
    template<class T> istream& operator>>(istream& is, vector<T>& vs) {
        for (auto it = vs.begin(); it != vs.end(); it++) is >> *it;
        return is;
    }

    int Kr, Kb;
    string S;
    void input() {
        cin >> Kr >> Kb;
        cin >> S;
    }

    bool check(const string& s) {
        int n = s.size();
        for (int i = 0; i < n; i++) {
            if (s[i] == 'W') continue;
            int k = (s[i] == 'R' ? Kr : Kb);
            if (i - k >= 0 && s[i - k] == s[i]) return false;
        }
        return true;
    }

    map<string, int> cache;
    int dfs(const string& s) {
        if (cache.count(s)) return cache[s];
        //cout << s << endl;
        int n = s.size();
        if (check(s)) return n;
        int ans = 0;
        for (int i = 0; i < n; i++) {
            if (s[i] == 'W') continue;
            ans = max(ans, dfs(s.substr(0, i) + s.substr(i + 1, n - i - 1)));
        }
        return cache[s] = ans;
    }

    void solve() {
        cout << dfs(S) << endl;
    }
}

int main() {
    input(); solve();
    return 0;
}

0