結果

問題 No.2905 Nabeatsu Integration
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-09-01 14:56:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 182,024 KB
実行使用メモリ 82,580 KB
最終ジャッジ日時 2024-09-07 11:34:46
合計ジャッジ時間 13,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 159 ms
82,356 KB
testcase_24 AC 168 ms
82,436 KB
testcase_25 AC 158 ms
82,400 KB
testcase_26 AC 169 ms
82,444 KB
testcase_27 AC 171 ms
82,332 KB
testcase_28 AC 159 ms
82,344 KB
testcase_29 AC 155 ms
82,444 KB
testcase_30 AC 170 ms
82,380 KB
testcase_31 AC 172 ms
82,460 KB
testcase_32 AC 157 ms
82,476 KB
testcase_33 AC 158 ms
82,460 KB
testcase_34 AC 171 ms
82,408 KB
testcase_35 AC 159 ms
82,500 KB
testcase_36 AC 171 ms
82,316 KB
testcase_37 AC 174 ms
82,344 KB
testcase_38 AC 159 ms
82,316 KB
testcase_39 AC 174 ms
82,388 KB
testcase_40 AC 164 ms
82,580 KB
testcase_41 AC 158 ms
82,444 KB
testcase_42 AC 173 ms
82,432 KB
testcase_43 AC 165 ms
82,384 KB
testcase_44 AC 164 ms
82,492 KB
testcase_45 AC 165 ms
82,496 KB
testcase_46 AC 164 ms
82,484 KB
testcase_47 AC 165 ms
82,376 KB
testcase_48 AC 167 ms
82,344 KB
testcase_49 AC 168 ms
82,576 KB
testcase_50 AC 165 ms
82,448 KB
testcase_51 AC 165 ms
82,436 KB
testcase_52 AC 165 ms
82,320 KB
testcase_53 AC 167 ms
82,428 KB
testcase_54 AC 166 ms
82,432 KB
testcase_55 AC 167 ms
82,376 KB
testcase_56 AC 167 ms
82,348 KB
testcase_57 AC 164 ms
82,348 KB
testcase_58 AC 157 ms
82,480 KB
testcase_59 AC 158 ms
82,156 KB
testcase_60 AC 159 ms
82,432 KB
testcase_61 AC 130 ms
66,328 KB
testcase_62 AC 170 ms
82,332 KB
testcase_63 AC 168 ms
82,380 KB
testcase_64 AC 172 ms
82,436 KB
testcase_65 AC 158 ms
82,500 KB
testcase_66 AC 166 ms
82,316 KB
testcase_67 AC 166 ms
82,416 KB
testcase_68 AC 165 ms
82,316 KB
testcase_69 AC 164 ms
82,492 KB
testcase_70 AC 158 ms
82,232 KB
testcase_71 AC 159 ms
82,216 KB
testcase_72 AC 159 ms
82,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
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);
  for (int i = 1; i < n; i++) {    
    ll to = i + z[i];
    if (q[to][s[z[i]] - '0'] == 0) {
      q[to][s[z[i]] - '0'] = z[i] + 1;
    }
  }

  // 昇順のdp遷移
  vector<mint> dp(n + 1);
  for (int i = 0; i < n; i++) {    
    dp[i + 1] = 10 * dp[i] + 10;
    for (int j = 0; j < 10; j++) {      
      if (q[i][j] != i + 1)
        dp[i + 1] -= dp[q[i][j]];
    }
  }

  dp[n] -= n - 1;
  cout << dp[n].val();
  return 0;
}
0