結果

問題 No.1702 count good string
ユーザー hourenhouren
提出日時 2021-10-08 22:51:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 179,196 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-07-23 06:00:27
合計ジャッジ時間 6,043 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll MOD = 1000000007;
#define rep(i, n) for(int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()

int main(){
    int n;
    cin >> n;
    string s, t = "yukicoder";
    cin >> s;
    vector<vector<vector<ll>>> dp(n+1,vector<vector<ll>>(10,vector<ll>(2,0)));
    dp[0][0][0] = 1;
    rep(i,n){
        dp[i+1] = dp[i];
        if(s[i] == '?'){
            rep(j,9) dp[i+1][j+1][1] += dp[i][j][0];
        }else{
            rep(j,9){
                if(s[i] == t[j]){
                    dp[i+1][j+1][0] += dp[i][j][0];
                    dp[i+1][j+1][1] += dp[i][j][1];
                }
            }
        }
        rep(j,20) dp[i+1][j%10][j/10] %= MOD;
    }
    /*rep(i,n+1){
        rep(j,10){
            cout << dp[i][j][0] + dp[i][j][1] << " ";
        }
        cout << endl;
    }*/
    cout << (dp[n][9][0] + dp[n][9][1]) % MOD << endl;
    return 0;
}
0