結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 7 ms
7,424 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 40 ms
34,304 KB
testcase_17 AC 44 ms
37,376 KB
testcase_18 AC 41 ms
36,608 KB
testcase_19 AC 51 ms
45,568 KB
testcase_20 AC 55 ms
46,976 KB
testcase_21 AC 26 ms
24,448 KB
testcase_22 AC 47 ms
41,856 KB
testcase_23 AC 56 ms
49,920 KB
testcase_24 AC 44 ms
38,784 KB
testcase_25 AC 47 ms
41,728 KB
testcase_26 AC 27 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 src=dp[i][K][U][R][O];
                        if (src!=0) {
                            char c=s[i];
                            if (c=='K' || c=='?')
                                chmax(dp[i+1][K+1][U][R][O],src);
                            if (c=='U' || c=='?') 
                                chmax(dp[i+1][K][U+1][R][O],src);
                            if (c=='R' || c=='?')
                                chmax(dp[i+1][K][U][R+1][O],src);
                            if (c=='O' || c=='?')
                                chmax(dp[i+1][K][U][R][O+1],src);
                            if (c=='I' || c=='?') if (O>src-1) {
                                chmax(dp[i+1][K][U][R][O],src+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