結果

問題 No.291 黒い文字列
ユーザー roiti46roiti46
提出日時 2015-10-17 03:04:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 1,220 ms
コンパイル使用メモリ 162,676 KB
実行使用メモリ 96,840 KB
最終ジャッジ日時 2024-07-22 07:47:34
合計ジャッジ時間 3,435 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
96,492 KB
testcase_01 AC 27 ms
96,792 KB
testcase_02 AC 29 ms
96,552 KB
testcase_03 AC 28 ms
96,624 KB
testcase_04 AC 26 ms
96,524 KB
testcase_05 AC 29 ms
96,504 KB
testcase_06 AC 29 ms
96,776 KB
testcase_07 AC 27 ms
96,648 KB
testcase_08 AC 27 ms
96,764 KB
testcase_09 AC 26 ms
96,776 KB
testcase_10 AC 35 ms
96,840 KB
testcase_11 AC 32 ms
96,648 KB
testcase_12 AC 32 ms
96,776 KB
testcase_13 AC 26 ms
96,520 KB
testcase_14 AC 30 ms
96,796 KB
testcase_15 AC 27 ms
96,748 KB
testcase_16 AC 53 ms
96,664 KB
testcase_17 AC 54 ms
96,840 KB
testcase_18 AC 55 ms
96,776 KB
testcase_19 AC 60 ms
96,748 KB
testcase_20 AC 63 ms
96,780 KB
testcase_21 AC 54 ms
96,616 KB
testcase_22 AC 64 ms
96,840 KB
testcase_23 AC 69 ms
96,624 KB
testcase_24 AC 58 ms
96,800 KB
testcase_25 AC 55 ms
96,620 KB
testcase_26 AC 53 ms
96,816 KB
testcase_27 AC 53 ms
96,788 KB
testcase_28 AC 52 ms
96,528 KB
testcase_29 AC 53 ms
96,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, a) REP(i, 0, a)
#define EACH(i, a) for (auto i: a)
#define ITR(x, a) for (__typeof(a.begin()) x = a.begin(); x != a.end(); x++)
#define ALL(a) (a.begin()), (a.end())
#define HAS(a, x) (a.find(x) != a.end())
#define endl '\n'

string S;
int dp[102][22][22][22][22];

inline void update(int &a, int b) {
  a = max(a, b);
}

int main(void) {
  cin >> S;
  int N = S.size();
  memset(dp, -1, sizeof(dp));
  dp[0][0][0][0][0] = 0;
  rep(i, N) rep(k, 21) rep(u, 21) rep(r, 21) rep(o, 21) {
    if (dp[i][k][u][r][o] == -1) continue;
    update(dp[i + 1][k][u][r][o], dp[i][k][u][r][o]);
    if (S[i] == 'K' || S[i] == '?') update(dp[i + 1][k + 1][u][r][o], dp[i][k][u][r][o]);
    if ((S[i] == 'U' || S[i] == '?') && k) update(dp[i + 1][k - 1][u + 1][r][o], dp[i][k][u][r][o]);
    if ((S[i] == 'R' || S[i] == '?') && u) update(dp[i + 1][k][u - 1][r + 1][o], dp[i][k][u][r][o]);
    if ((S[i] == 'O' || S[i] == '?') && r) update(dp[i + 1][k][u][r - 1][o + 1], dp[i][k][u][r][o]);
    if ((S[i] == 'I' || S[i] == '?') && o) update(dp[i + 1][k][u][r][o - 1], dp[i][k][u][r][o] + 1);
  }

  int ans = 0;
  rep(k, 21)rep(u, 21) rep(r, 21) rep(o, 21) update(ans, dp[N][k][u][r][o]);
  cout << ans << endl;

  return 0;
}
0