結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-09-13 19:53:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,610 bytes
コンパイル時間 4,033 ms
コンパイル使用メモリ 193,448 KB
実行使用メモリ 89,048 KB
最終ジャッジ日時 2024-09-13 19:57:33
合計ジャッジ時間 41,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 3 ms
6,948 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 TLE -
testcase_24 AC 416 ms
86,292 KB
testcase_25 TLE -
testcase_26 AC 386 ms
85,524 KB
testcase_27 AC 394 ms
85,396 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 387 ms
86,160 KB
testcase_31 AC 395 ms
86,040 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 395 ms
85,652 KB
testcase_35 TLE -
testcase_36 AC 386 ms
85,648 KB
testcase_37 AC 415 ms
84,928 KB
testcase_38 TLE -
testcase_39 AC 420 ms
82,448 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 393 ms
85,396 KB
testcase_43 AC 363 ms
86,544 KB
testcase_44 AC 361 ms
86,548 KB
testcase_45 AC 358 ms
86,164 KB
testcase_46 AC 399 ms
86,548 KB
testcase_47 AC 358 ms
86,536 KB
testcase_48 AC 406 ms
86,420 KB
testcase_49 AC 436 ms
86,416 KB
testcase_50 AC 419 ms
86,288 KB
testcase_51 AC 412 ms
86,292 KB
testcase_52 AC 419 ms
86,424 KB
testcase_53 AC 407 ms
86,420 KB
testcase_54 AC 406 ms
86,548 KB
testcase_55 AC 408 ms
86,292 KB
testcase_56 AC 492 ms
86,420 KB
testcase_57 AC 439 ms
86,544 KB
testcase_58 AC 395 ms
82,484 KB
testcase_59 TLE -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<unordered_map>
using namespace std;

using ll = long long;
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;


int main() {
  string s;
  cin >> s;
  ll n = s.size();

  // 各文字列目の時にどの数字を与えるとどのインデックスに移動するか
  vector q(n + 1, vector<int>(10));

  // 正解遷移
  for (int i = 0; i < n; i++)
    q[i][s[i] - '0'] = i + 1;

  // 不正解の復帰遷移をz-algorithmで調査
  auto z = z_algorithm(s);
  vector<int> revq = { -1,0 };
  for (int i = 1; i < n; i++) {
    ll to = i + z[i];
    if (q[to][s[z[i]] - '0'] == 0 && z[i] + 1 < n) {
      q[to][s[z[i]] - '0'] = z[i] + 1;
      revq.push_back(z[i] + 1);
    }
  }
  sort(revq.begin(), revq.end());
  revq.erase(unique(revq.begin(), revq.end()), revq.end());
  unordered_map<int, int> mrev;
  for (int i = 0; i < revq.size(); i++)
    mrev[revq[i]] = i;

  vector<mint> dp(revq.size());
  mint r10 = mint(10).inv();
  for (int i = n - 1; i >= 0; i--) {
    vector<mint> ndp(dp.size());
    ndp[0] = 1;
    for (int v = 0; v < 10; v++) {
      if (q[i][v] == i + 1) {
        for (int di = 0; di < dp.size(); di++) {
          ndp[di] += dp[di] * r10;
        }
      }
      else {
        ndp[mrev[q[i][v]]] += r10;
      }
    }
    if (mrev.find(i) != mrev.end() && mrev[i]) {
      mint div = (-ndp.back() + 1).inv();
      for (int i = 0; i < ndp.size() - 1; i++) {
        ndp[i] *= div;
      }
      ndp.pop_back();
    }
    dp = ndp;
  }
  dp[0] -= n - 1;
  cout << dp[0].val();
  return 0;
}
0