結果

問題 No.2905 Nabeatsu Integration
ユーザー KudeKude
提出日時 2024-09-27 21:57:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,782 bytes
コンパイル時間 2,930 ms
コンパイル使用メモリ 276,924 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-09-27 21:57:24
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 49 ms
55,028 KB
testcase_24 AC 53 ms
55,068 KB
testcase_25 AC 48 ms
54,968 KB
testcase_26 AC 53 ms
55,080 KB
testcase_27 AC 56 ms
54,968 KB
testcase_28 AC 48 ms
55,008 KB
testcase_29 AC 46 ms
55,124 KB
testcase_30 AC 53 ms
54,964 KB
testcase_31 AC 52 ms
54,940 KB
testcase_32 AC 46 ms
54,976 KB
testcase_33 AC 46 ms
54,956 KB
testcase_34 AC 53 ms
54,996 KB
testcase_35 AC 46 ms
55,160 KB
testcase_36 AC 63 ms
55,108 KB
testcase_37 AC 52 ms
55,004 KB
testcase_38 AC 46 ms
55,028 KB
testcase_39 AC 53 ms
55,004 KB
testcase_40 AC 48 ms
55,080 KB
testcase_41 AC 47 ms
55,008 KB
testcase_42 AC 53 ms
54,944 KB
testcase_43 AC 52 ms
54,972 KB
testcase_44 AC 50 ms
55,152 KB
testcase_45 AC 52 ms
55,084 KB
testcase_46 AC 53 ms
55,156 KB
testcase_47 AC 53 ms
55,112 KB
testcase_48 AC 49 ms
55,072 KB
testcase_49 AC 49 ms
55,080 KB
testcase_50 AC 53 ms
54,972 KB
testcase_51 AC 49 ms
55,084 KB
testcase_52 AC 48 ms
55,140 KB
testcase_53 AC 47 ms
55,160 KB
testcase_54 AC 49 ms
55,076 KB
testcase_55 AC 52 ms
55,060 KB
testcase_56 AC 46 ms
55,076 KB
testcase_57 AC 48 ms
54,996 KB
testcase_58 AC 48 ms
55,188 KB
testcase_59 AC 48 ms
54,948 KB
testcase_60 AC 51 ms
55,112 KB
testcase_61 AC 38 ms
44,444 KB
testcase_62 AC 48 ms
54,972 KB
testcase_63 AC 46 ms
55,044 KB
testcase_64 AC 48 ms
55,088 KB
testcase_65 AC 47 ms
55,088 KB
testcase_66 AC 45 ms
54,972 KB
testcase_67 AC 46 ms
55,080 KB
testcase_68 AC 46 ms
54,996 KB
testcase_69 AC 48 ms
55,004 KB
testcase_70 AC 49 ms
55,068 KB
testcase_71 AC 50 ms
54,908 KB
testcase_72 AC 52 ms
55,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
using mint = modint998244353;

template <class T>
vector<int> MP(const T& pattern) {
  const int n = pattern.size();
  vector<int> pi(n + 1);
  pi[0] = -1;
  int border = 0;
  for (int i = 1; i < n; i++, border++) {
    const auto c = pattern[i];
    pi[i] = border;
    while (border != -1 && pattern[border] != c) {
      border = pi[border];
    }
  }
  pi[n] = border;
  return pi;
}

// aE + b
struct S {
  mint a, b;
};

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  string s;
  cin >> s;
  for (char& c : s) c -= '0';
  auto border = MP(s);
  int n = s.size();
  vector<array<int, 10>> nxt(n);
  nxt[0][s[0]] = 1;
  rep(i, n) if (i) {
    nxt[i] = nxt[border[i]];
    nxt[i][s[i]] = i + 1;
  }
  vector<S> dp(n + 1);
  dp[0] = {1, 0};
  rep(i, n) {
    S res = dp[i];
    res.b--;
    res.a *= 10, res.b *= 10;
    rep(x, 10) if (int j = nxt[i][x]; j != i + 1) {
      res.a -= dp[j].a;
      res.b -= dp[j].b;
    }
    dp[i+1] = res;
  }
  auto [a, b] = dp[n];
  auto ans = -b / a;
  cout << (ans - (n - 1)).val() << endl;
}
0