結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 NachiaNachia
提出日時 2024-06-24 21:46:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 1,495 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 16,220 KB
最終ジャッジ日時 2024-09-07 11:33:14
合計ジャッジ時間 5,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 44 ms
15,916 KB
testcase_24 AC 62 ms
16,092 KB
testcase_25 AC 49 ms
16,088 KB
testcase_26 AC 63 ms
15,952 KB
testcase_27 AC 61 ms
16,072 KB
testcase_28 AC 46 ms
15,888 KB
testcase_29 AC 45 ms
16,008 KB
testcase_30 AC 67 ms
16,076 KB
testcase_31 AC 63 ms
15,888 KB
testcase_32 AC 46 ms
16,048 KB
testcase_33 AC 45 ms
16,000 KB
testcase_34 AC 63 ms
15,976 KB
testcase_35 AC 49 ms
16,048 KB
testcase_36 AC 64 ms
16,072 KB
testcase_37 AC 60 ms
15,980 KB
testcase_38 AC 47 ms
15,952 KB
testcase_39 AC 62 ms
16,040 KB
testcase_40 AC 47 ms
16,108 KB
testcase_41 AC 46 ms
16,068 KB
testcase_42 AC 59 ms
16,064 KB
testcase_43 AC 59 ms
15,976 KB
testcase_44 AC 57 ms
16,012 KB
testcase_45 AC 61 ms
15,952 KB
testcase_46 AC 64 ms
16,068 KB
testcase_47 AC 63 ms
16,084 KB
testcase_48 AC 54 ms
15,956 KB
testcase_49 AC 53 ms
15,884 KB
testcase_50 AC 54 ms
15,980 KB
testcase_51 AC 54 ms
16,044 KB
testcase_52 AC 54 ms
16,008 KB
testcase_53 AC 51 ms
15,952 KB
testcase_54 AC 55 ms
16,020 KB
testcase_55 AC 52 ms
16,032 KB
testcase_56 AC 53 ms
15,912 KB
testcase_57 AC 59 ms
16,024 KB
testcase_58 AC 50 ms
16,052 KB
testcase_59 AC 50 ms
15,952 KB
testcase_60 AC 49 ms
16,220 KB
testcase_61 AC 42 ms
13,520 KB
testcase_62 AC 54 ms
15,980 KB
testcase_63 AC 55 ms
15,888 KB
testcase_64 AC 54 ms
16,036 KB
testcase_65 AC 49 ms
15,980 KB
testcase_66 AC 49 ms
16,020 KB
testcase_67 AC 50 ms
16,060 KB
testcase_68 AC 49 ms
15,916 KB
testcase_69 AC 51 ms
15,984 KB
testcase_70 AC 50 ms
15,996 KB
testcase_71 AC 46 ms
15,956 KB
testcase_72 AC 46 ms
16,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <atcoder/modint>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
#define repr(i,n) for(int i=int(n)-1; i>=0; i--)
using Modint = atcoder::static_modint<998244353>;
using namespace std;

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    string S; cin >> S;
    int n = S.size();
    vector<int> link(n+1, -1);
    vector<int> fast(n+1, -1);
    for(int i=0; i<n; i++){
        int h = link[i];
        while(h != -1){
            if(h == -1 || S[h] == S[i]){ break; }
            if(link[h] == -1 || S[link[h]] == S[i]){ h = link[h]; break; }
            h = fast[h];
        }
        link[i+1] = h+1;
        int p = link[h+1];
        if(p != -1 && S[p] == S[h+1]) p = fast[h+1];
        fast[i+1] = p;
    }
    vector<Modint> dp(n+1);
    dp[0] = 0;
    for(int i=0; i<n; i++){
        Modint x = dp[i] * 10;
        x += 10;
        vector<int> vis(10, -1);
        vis[S[i] - '0'] = i;
        int h = i;
        while(h != -1){
            if(h != -1 && vis[S[h] - '0'] == -1){ vis[S[h] - '0'] = h; }
            if(link[h] != -1 && vis[S[link[h]] - '0'] == -1){ vis[S[link[h]] - '0'] = link[h]; }
            h = fast[h];
        }
        for(int d=0; d<10; d++) if(vis[d] != i) x -= dp[vis[d]+1];
        dp[i+1] = x;
    }
    Modint ans = dp[n];
    ans -= n-1;
    cout << ans.val() << endl;
    return 0;
}
0