結果

問題 No.291 黒い文字列
ユーザー latte0119latte0119
提出日時 2015-10-17 00:59:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 1,841 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 167,072 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 06:54:58
合計ジャッジ時間 3,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 11 ms
6,944 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 17 ms
6,940 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 17 ms
6,944 KB
testcase_19 AC 26 ms
6,944 KB
testcase_20 AC 27 ms
6,944 KB
testcase_21 AC 24 ms
6,944 KB
testcase_22 AC 32 ms
6,944 KB
testcase_23 AC 37 ms
6,944 KB
testcase_24 AC 30 ms
6,940 KB
testcase_25 AC 25 ms
6,940 KB
testcase_26 AC 25 ms
6,940 KB
testcase_27 AC 24 ms
6,940 KB
testcase_28 AC 24 ms
6,940 KB
testcase_29 AC 24 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int>P;
typedef vector<int>VI;
#define rep(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define maxv(a,b) (a)=max((a),(b))
string kuroi="KUROI";
string s;
VI v;

int dp[2][25][25][25][25];

int main(){
    cin>>s;
    rep(i,s.size()){
        int tmp=-1;
        rep(j,5)if(kuroi[j]==s[i])tmp=j;
        if(~tmp)v.pb(tmp);
        else if(s[i]=='?')v.pb(-1);
    }
    bool b=0;
    memset(dp,-1,sizeof(dp));
    dp[0][0][0][0][0]=0;
    rep(x,v.size()){
        rep(u,21)rep(r,21)rep(o,21)rep(i,21){
            if(dp[b][u][r][o][i]==-1)continue;
            maxv(dp[!b][u][r][o][i],dp[b][u][r][o][i]);
            if(v[x]==0){
                maxv(dp[!b][u+1][r][o][i],dp[b][u][r][o][i]);
            }
            else if(v[x]==1){
                if(u)maxv(dp[!b][u-1][r+1][o][i],dp[b][u][r][o][i]);
            }
            else if(v[x]==2){
                if(r)maxv(dp[!b][u][r-1][o+1][i],dp[b][u][r][o][i]);
            }
            else if(v[x]==3){
                if(o)maxv(dp[!b][u][r][o-1][i+1],dp[b][u][r][o][i]);
            }
            else if(v[x]==4){
                if(i)maxv(dp[!b][u][r][o][i-1],dp[b][u][r][o][i]+1);
            }
            else if(v[x]==-1){
                maxv(dp[!b][u+1][r][o][i],dp[b][u][r][o][i]);
                if(u)maxv(dp[!b][u-1][r+1][o][i],dp[b][u][r][o][i]);
                if(r)maxv(dp[!b][u][r-1][o+1][i],dp[b][u][r][o][i]);
                if(o)maxv(dp[!b][u][r][o-1][i+1],dp[b][u][r][o][i]);
                if(i)maxv(dp[!b][u][r][o][i-1],dp[b][u][r][o][i]+1);
            }
            dp[b][u][r][o][i]=-1;
        }
        b=!b;
    }

    int ans=0;
    rep(u,21)rep(r,21)rep(o,21)rep(i,21)maxv(ans,dp[v.size()&1][u][r][o][i]);
    printf("%d\n",ans);

    return 0;
}
0