結果

問題 No.291 黒い文字列
ユーザー milanis48663220milanis48663220
提出日時 2020-07-05 14:11:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 2,186 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 85,704 KB
実行使用メモリ 13,532 KB
最終ジャッジ日時 2024-09-22 10:39:36
合計ジャッジ時間 14,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
13,016 KB
testcase_01 AC 44 ms
13,144 KB
testcase_02 AC 116 ms
13,148 KB
testcase_03 AC 81 ms
13,016 KB
testcase_04 AC 44 ms
13,148 KB
testcase_05 AC 81 ms
13,020 KB
testcase_06 AC 102 ms
13,144 KB
testcase_07 AC 59 ms
13,020 KB
testcase_08 AC 66 ms
13,016 KB
testcase_09 AC 37 ms
13,020 KB
testcase_10 AC 263 ms
13,020 KB
testcase_11 AC 183 ms
13,148 KB
testcase_12 AC 183 ms
13,016 KB
testcase_13 AC 45 ms
13,020 KB
testcase_14 AC 117 ms
13,144 KB
testcase_15 AC 81 ms
13,016 KB
testcase_16 AC 742 ms
13,272 KB
testcase_17 AC 745 ms
13,272 KB
testcase_18 AC 745 ms
13,152 KB
testcase_19 AC 763 ms
13,276 KB
testcase_20 AC 774 ms
13,280 KB
testcase_21 AC 745 ms
13,016 KB
testcase_22 AC 791 ms
13,532 KB
testcase_23 AC 815 ms
13,532 KB
testcase_24 AC 762 ms
13,276 KB
testcase_25 AC 738 ms
12,888 KB
testcase_26 AC 740 ms
12,896 KB
testcase_27 AC 735 ms
13,016 KB
testcase_28 AC 735 ms
13,020 KB
testcase_29 AC 741 ms
13,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

bool dp[2][22][22][22][22][22];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    dp[0][0][0][0][0][0] = true;
    string s;
    cin >> s;
    int ans = 0;
    for(int idx = 0; idx < s.size(); idx++){
        for(int i = 0; i <= 20; i++){
            for(int j = 0; j <= 20; j++){
                for(int k = 0; k <= 20; k++){
                    for(int l = 0; l <= 20; l++){
                        for(int m = 0; m <= 20; m++){
                            dp[(idx+1)%2][i][j][k][l][m] = dp[idx%2][i][j][k][l][m];
                        }
                    }
                }
            }
        }
        for(int i = 0; i <= 20; i++){
            for(int j = 0; j <= 20; j++){
                for(int k = 0; k <= 20; k++){
                    for(int l = 0; l <= 20; l++){
                        for(int m = 0; m <= 20; m++){
                            if(!dp[idx%2][i][j][k][l][m]) continue;
                            if(s[idx] == 'K' || s[idx] == '?'){
                                dp[(idx+1)%2][i+1][j][k][l][m] = true;
                            }
                            if((s[idx] == 'U' || s[idx] == '?') && i >= 1){
                                dp[(idx+1)%2][i-1][j+1][k][l][m] = true;
                            }
                            if((s[idx] == 'R' || s[idx] == '?') && j >= 1){
                                dp[(idx+1)%2][i][j-1][k+1][l][m] = true;
                            }
                            if((s[idx] == 'O' || s[idx] == '?') && k >= 1){
                                dp[(idx+1)%2][i][j][k-1][l+1][m] = true;
                            }
                            if((s[idx] == 'I' || s[idx] == '?') && l >= 1){
                                dp[(idx+1)%2][i][j][k][l-1][m+1] = true;
                                ans = max(ans, m+1);
                            }

                        }
                    }
                }
            }
        }
    }
    cout << ans << endl;
}
0