結果

問題 No.38 赤青白ブロック
ユーザー h_nosonh_noson
提出日時 2016-04-29 19:22:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 259 ms / 5,000 ms
コード長 888 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 62,420 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 02:13:58
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
5,248 KB
testcase_01 AC 56 ms
5,376 KB
testcase_02 AC 32 ms
5,376 KB
testcase_03 AC 119 ms
5,376 KB
testcase_04 AC 120 ms
5,376 KB
testcase_05 AC 183 ms
5,376 KB
testcase_06 AC 29 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 107 ms
5,376 KB
testcase_09 AC 29 ms
5,376 KB
testcase_10 AC 175 ms
5,376 KB
testcase_11 AC 156 ms
5,376 KB
testcase_12 AC 100 ms
5,376 KB
testcase_13 AC 259 ms
5,376 KB
testcase_14 AC 86 ms
5,376 KB
testcase_15 AC 99 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 58 ms
5,376 KB
testcase_18 AC 127 ms
5,376 KB
testcase_19 AC 107 ms
5,376 KB
testcase_20 AC 64 ms
5,376 KB
testcase_21 AC 25 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 212 ms
5,376 KB
testcase_24 AC 35 ms
5,376 KB
testcase_25 AC 88 ms
5,376 KB
testcase_26 AC 79 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP(i,n,0)
#define REP(i,s,e) for (i = s; i < e; i++)
#define rep(i,n) REP(i,0,n)
#define INF 100000000

typedef long long ll;

int kr, kb;
string s;

int dfs(string ans, int n) {
    if (n == 30)
        return ans.size();
    else if (s[n] == 'R') {
        if (kr > ans.size() || ans[ans.size()-kr] != 'R')
            return max(dfs(ans+s[n],n+1),dfs(ans,n+1));
        else
            return dfs(ans,n+1);
    }
    else if (s[n] == 'B') {
        if (kb > ans.size() || ans[ans.size()-kb] != 'B')
            return max(dfs(ans+s[n],n+1),dfs(ans,n+1));
        else
            return dfs(ans,n+1);
    }
    else
        return dfs(ans+s[n],n+1);
}

int main() {
    cin >> kr >> kb >> s;
    cout << dfs("",0) << endl;
    return 0;
}
0