結果

問題 No.291 黒い文字列
ユーザー どららどらら
提出日時 2015-10-17 18:52:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,656 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,996 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-07-22 10:32:47
合計ジャッジ時間 4,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
83,072 KB
testcase_01 AC 58 ms
83,072 KB
testcase_02 AC 61 ms
83,072 KB
testcase_03 AC 60 ms
83,072 KB
testcase_04 AC 58 ms
83,072 KB
testcase_05 AC 61 ms
83,072 KB
testcase_06 AC 61 ms
83,072 KB
testcase_07 AC 60 ms
82,944 KB
testcase_08 AC 59 ms
82,944 KB
testcase_09 AC 59 ms
83,072 KB
testcase_10 AC 69 ms
83,072 KB
testcase_11 AC 65 ms
83,072 KB
testcase_12 AC 65 ms
83,072 KB
testcase_13 AC 59 ms
83,072 KB
testcase_14 AC 62 ms
83,072 KB
testcase_15 AC 60 ms
83,072 KB
testcase_16 AC 96 ms
83,072 KB
testcase_17 AC 99 ms
83,072 KB
testcase_18 AC 97 ms
82,944 KB
testcase_19 AC 107 ms
82,944 KB
testcase_20 AC 108 ms
83,072 KB
testcase_21 AC 93 ms
83,072 KB
testcase_22 AC 109 ms
82,944 KB
testcase_23 AC 123 ms
83,072 KB
testcase_24 AC 104 ms
83,072 KB
testcase_25 AC 97 ms
83,200 KB
testcase_26 AC 94 ms
82,944 KB
testcase_27 AC 90 ms
83,072 KB
testcase_28 AC 92 ms
83,072 KB
testcase_29 AC 94 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <iostream>
#include <queue>
#include <list>
#include <stack>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;


int dp[105][21][21][21][21];

int main(){
  ios::sync_with_stdio(false);

  string S;
  cin >> S;

  rep(i,105) rep(a,21) rep(b,21) rep(c,21) rep(d,21) dp[i][a][b][c][d] = -1;
  
  int ret = 0;
  dp[0][0][0][0][0] = 0;
  
  rep(i,S.length()){
    rep(a,21) rep(b,21) rep(c,21) rep(d,21){
      int v = dp[i][a][b][c][d];
      if(v < 0) continue;
      //cout << i << " " << a << " " << b << " " << c << " " << d << "  " << v << endl;
      dp[i+1][a][b][c][d] = max(dp[i+1][a][b][c][d], dp[i][a][b][c][d]);

      if(S[i] == 'K' || S[i] == '?') if(a<20) dp[i+1][a+1][b][c][d] = max(dp[i+1][a+1][b][c][d], v);
      if(S[i] == 'U' || S[i] == '?') if(b<20 && a>0) dp[i+1][a-1][b+1][c][d] = max(dp[i+1][a-1][b+1][c][d], v);
      if(S[i] == 'R' || S[i] == '?') if(c<20 && b>0) dp[i+1][a][b-1][c+1][d] = max(dp[i+1][a][b-1][c+1][d], v);
      if(S[i] == 'O' || S[i] == '?') if(d<20 && c>0) dp[i+1][a][b][c-1][d+1] = max(dp[i+1][a][b][c-1][d+1], v);
      if(S[i] == 'I' || S[i] == '?') if(d>0){
        ret = max(ret, v+1);
        dp[i+1][a][b][c][d-1] = max(dp[i+1][a][b][c][d-1], v+1);
      }
    }
  }
  cout << ret << endl;
  
  return 0;
}
0