結果

問題 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
コンパイル時間 620 ms
コンパイル使用メモリ 70,944 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-11-15 16:21:35
合計ジャッジ時間 2,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 7 ms
7,552 KB
testcase_12 AC 5 ms
6,400 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 37 ms
34,304 KB
testcase_17 AC 41 ms
37,248 KB
testcase_18 AC 40 ms
36,864 KB
testcase_19 AC 51 ms
45,568 KB
testcase_20 AC 52 ms
47,104 KB
testcase_21 AC 26 ms
24,320 KB
testcase_22 AC 47 ms
41,728 KB
testcase_23 AC 56 ms
50,048 KB
testcase_24 AC 43 ms
38,912 KB
testcase_25 AC 45 ms
41,856 KB
testcase_26 AC 25 ms
23,808 KB
testcase_27 AC 12 ms
11,648 KB
testcase_28 AC 21 ms
20,480 KB
testcase_29 AC 38 ms
35,712 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