結果

問題 No.291 黒い文字列
ユーザー 37zigen37zigen
提出日時 2020-08-31 04:31:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 72,240 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-04-27 13:59:01
合計ジャッジ時間 2,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 7 ms
7,424 KB
testcase_12 AC 6 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,948 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 38 ms
34,304 KB
testcase_17 AC 41 ms
37,376 KB
testcase_18 AC 42 ms
36,736 KB
testcase_19 AC 52 ms
45,440 KB
testcase_20 AC 52 ms
46,848 KB
testcase_21 AC 27 ms
24,320 KB
testcase_22 AC 47 ms
41,600 KB
testcase_23 AC 58 ms
49,920 KB
testcase_24 AC 43 ms
38,784 KB
testcase_25 AC 45 ms
41,728 KB
testcase_26 AC 26 ms
23,680 KB
testcase_27 AC 13 ms
11,648 KB
testcase_28 AC 22 ms
20,480 KB
testcase_29 AC 39 ms
35,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main() {
      | ^~~~

ソースコード

diff #

#include <iostream>
using namespace std;
#define chmax(p,q) (p<q?p=q:p)
int dp[101][22][22][22][22];

main() {
    string s;
    cin>>s;
    int ans=1;
    dp[0][0][0][0][0]=1;
    for (int i=0;i<s.size();++i) {
        for (int K=0;K<=20;++K) {
            for (int U=0;U<=K;++U) {
                for (int R=0;R<=U;++R) {
                    for (int O=0;O<=R;++O) {
                        int t=dp[i][K][U][R][O];
                        if (t!=0) {
                            char c=s[i];
                            if (c=='K' || c=='?') chmax(dp[i+1][K+1][U][R][O],t);
                            if (c=='U' || c=='?') chmax(dp[i+1][K][U+1][R][O],t);
                            if (c=='R' || c=='?') chmax(dp[i+1][K][U][R+1][O],t);
                            if (c=='O' || c=='?') chmax(dp[i+1][K][U][R][O+1],t);
                            if (c=='I' || c=='?') if (O>t-1) {
                                chmax(dp[i+1][K][U][R][O],t+1);
                                ans=max(ans,dp[i+1][K][U][R][O]);
                            }
                            chmax(dp[i+1][K][U][R][O],dp[i][K][U][R][O]);
                        }
                    }
                }
            }
        }
    }
    cout<<ans-1<<endl;
}
0