結果

問題 No.1702 count good string
ユーザー Manuel1024Manuel1024
提出日時 2022-12-12 23:40:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 75,264 KB
実行使用メモリ 49,152 KB
最終ジャッジ日時 2024-04-24 13:11:06
合計ジャッジ時間 3,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 57 ms
49,152 KB
testcase_14 AC 58 ms
48,896 KB
testcase_15 AC 58 ms
48,896 KB
testcase_16 AC 57 ms
49,024 KB
testcase_17 AC 57 ms
48,896 KB
testcase_18 AC 57 ms
49,152 KB
testcase_19 AC 59 ms
49,024 KB
testcase_20 AC 59 ms
48,896 KB
testcase_21 AC 58 ms
49,024 KB
testcase_22 AC 58 ms
48,896 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 58 ms
48,896 KB
testcase_34 AC 58 ms
49,024 KB
testcase_35 AC 58 ms
49,024 KB
testcase_36 AC 60 ms
49,024 KB
testcase_37 AC 58 ms
48,896 KB
testcase_38 AC 57 ms
49,024 KB
testcase_39 AC 58 ms
48,896 KB
testcase_40 AC 60 ms
48,896 KB
testcase_41 AC 58 ms
48,896 KB
testcase_42 AC 60 ms
48,896 KB
testcase_43 AC 60 ms
49,024 KB
testcase_44 AC 55 ms
49,024 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
using namespace std;
using ll = long long;
constexpr ll MOD = 1'000'000'007;

int main(){
    int n; cin >> n;
    string s; cin >> s;
    const string y = "yukicoder";
    vector<vector<vector<ll>>> dp(2, vector<vector<ll>>(y.size()+10, vector<ll>(n+10, 0)));
    dp[0][0][0] = 1;
    for(int i = 0; i < n; i++){
        for(int j = 0; j <= y.size(); j++){
            for(int k = 0; k < 2; k++){
                dp[k][j][i+1] += dp[k][j][i];
                dp[k][j][i+1] %= MOD;
                if(k == 0 && s[i] == '?'){
                    dp[1][j+1][i+1] += dp[k][j][i];
                    dp[1][j+1][i+1] %= MOD;
                }
                if(j < y.size() && s[i] == y[j]){
                    dp[k][j+1][i+1] += dp[k][j][i];
                    dp[k][j+1][i+1] %= MOD;
                }
            }
        }
    }

    cout << (dp[0][y.size()][n]+dp[1][y.size()][n])%MOD << endl;
    return 0;
}
0