結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 5 ms
7,296 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 36 ms
34,304 KB
testcase_17 AC 37 ms
37,376 KB
testcase_18 AC 38 ms
36,736 KB
testcase_19 AC 48 ms
45,568 KB
testcase_20 AC 50 ms
46,848 KB
testcase_21 AC 24 ms
24,320 KB
testcase_22 AC 45 ms
41,728 KB
testcase_23 AC 53 ms
49,920 KB
testcase_24 AC 41 ms
38,784 KB
testcase_25 AC 42 ms
41,856 KB
testcase_26 AC 24 ms
23,680 KB
testcase_27 AC 12 ms
11,648 KB
testcase_28 AC 21 ms
20,480 KB
testcase_29 AC 36 ms
35,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | 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) {
                        if (dp[i][K][U][R][O]!=0) {
                            char c=s[i];
                            if (c=='K' || c=='?')
                                chmax(dp[i+1][K+1][U][R][O],dp[i][K][U][R][O]);
                            if (c=='U' || c=='?') 
                                chmax(dp[i+1][K][U+1][R][O],dp[i][K][U][R][O]);
                            if (c=='R' || c=='?')
                                chmax(dp[i+1][K][U][R+1][O],dp[i][K][U][R][O]);
                            if (c=='O' || c=='?')
                                chmax(dp[i+1][K][U][R][O+1],dp[i][K][U][R][O]);
                            if (c=='I' || c=='?') if (O>dp[i][K][U][R][O]-1) {
                                chmax(dp[i+1][K][U][R][O],dp[i][K][U][R][O]+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