結果

問題 No.3415 Dial Lock
コンテスト
ユーザー risujiroh
提出日時 2025-12-16 02:50:57
言語 C++23
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 3,374 ms / 10,000 ms
コード長 4,070 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,969 ms
コンパイル使用メモリ 334,708 KB
実行使用メモリ 45,080 KB
最終ジャッジ日時 2025-12-21 23:31:06
合計ジャッジ時間 55,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#if __INCLUDE_LEVEL__ == 0

#include __BASE_FILE__

constexpr array TEN{1, 10, 100, 1000, 10000, 100000};

constexpr int P = 115 << 20 | 1;

using Mint = atcoder::static_modint<P>;

const auto zs = [] {
  Mint z = Mint(atcoder::internal::primitive_root<P>).pow((P - 1) / 10);
  array<Mint, 10> zs;
  zs[0] = 1;
  for (int i : Rep(1, 10)) {
    zs[i] = z * zs[i - 1];
  }
  return zs;
}();

pair<vector<Mint>, vector<Mint>>
Go(int N, int K, const vector<vector<int>>& R, const vector<int>& A) {
  Mint K_inv = Mint(K).inv();

  vector<Mint> f(TEN[N]);
  for (int k : Rep(0, K)) {
    int index = 0;
    for (int i : Rep(0, N)) {
      index += (R[k][i] + A[i]) % 10 * TEN[i];
    }
    f[index] = K_inv;
  }

  for (int i : Rep(0, N)) {
    vector<Mint> nf(TEN[N]);
    for (int o = 0; o < TEN[N]; o += TEN[i + 1]) {
      for (int s : Rep(0, 10)) {
        for (int t : Rep(0, 10)) {
          Mint z = zs[s * t % 10];
          for (int j : Rep(0, TEN[i])) {
            nf[o + s * TEN[i] + j] += f[o + t * TEN[i] + j] * z;
          }
        }
      }
    }
    f = move(nf);
  }

  vector<pair<vector<Mint>, vector<Mint>>> seg(2 * TEN[N]);
  Mint inv = Mint(TEN[N]).inv();
  for (int index : Rep(0, TEN[N])) {
    int e = 0;
    for (int i : Rep(0, N)) {
      e += index / TEN[i] * A[i];
    }
    seg[TEN[N] + index] = {{inv}, {zs[e % 10], -f[index]}};
  }
  for (int i : Rev(Rep(1, TEN[N]))) {
    const auto& [a, b] = seg[2 * i];
    const auto& [c, d] = seg[2 * i + 1];
    ranges::transform(atcoder::convolution(a, d), atcoder::convolution(b, c),
                      back_inserter(seg[i].first), plus{});
    seg[i].second = atcoder::convolution(b, d);
  }
  return seg[1];
}

Mint Bm(vector<Mint> a, vector<Mint> b, int64_t n) {
  while (n > 0) {
    auto nb = b;
    for (int i = 1; i < Sz(nb); i += 2) {
      nb[i] = -nb[i];
    }
    auto na = atcoder::convolution(a, nb);
    nb = atcoder::convolution(b, nb);
    a.clear();
    for (int i = n & 1; i < Sz(na); i += 2) {
      a.push_back(na[i]);
    }
    for (int i : Rep(0, Sz(b))) {
      b[i] = nb[2 * i];
    }
    n >>= 1;
  }
  return a[0] / b[0];
}

void Solve() {
  int N, K;
  int64_t T;
  IN(N, K, T);
  vector<int> A(N);
  IN(A);
  vector R(K, vector<int>(N));
  IN(R);

  auto [numer, denom] = Go(N, K, R, A);
  auto [numer2, denom2] = Go(N, K, R, vector<int>(N));
  numer = atcoder::convolution(numer, denom2);
  denom = atcoder::convolution(denom, numer2);
  denom = atcoder::convolution(denom, {1, -1});

  Mint ans = Bm(numer, denom, T);
  OUT(ans);
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  Solve();
}

#elif __INCLUDE_LEVEL__ == 1

#include <bits/stdc++.h>

#include <atcoder/convolution.hpp>

template <class T> concept MyRange = std::ranges::range<T> && !std::convertible_to<T, std::string_view>;
template <class T> concept MyTuple = std::__is_tuple_like<T>::value && !MyRange<T>;

namespace std {

istream& operator>>(istream& is, MyRange auto&& r) {
  for (auto&& e : r) is >> e;
  return is;
}
istream& operator>>(istream& is, MyTuple auto&& t) {
  apply([&](auto&... xs) { (is >> ... >> xs); }, t);
  return is;
}

ostream& operator<<(ostream& os, MyRange auto&& r) {
  auto sep = "";
  for (auto&& e : r) os << exchange(sep, " ") << e;
  return os;
}
ostream& operator<<(ostream& os, MyTuple auto&& t) {
  auto sep = "";
  apply([&](auto&... xs) { ((os << exchange(sep, " ") << xs), ...); }, t);
  return os;
}

template <class T, atcoder::internal::is_modint_t<T>* = nullptr>
istream& operator>>(istream& is, T& x) {
  int v;
  is >> v;
  x = T::raw(v);
  return is;
}

template <class T, atcoder::internal::is_modint_t<T>* = nullptr>
ostream& operator<<(ostream& os, const T& x) {
  return os << x.val();
}

}  // namespace std

using namespace std;

#define Rev views::reverse
#define Rep(...) [](int l, int r) { return views::iota(min(l, r), r); }(__VA_ARGS__)
#define Sz(r) int(size(r))
#define IN(...) (cin >> forward_as_tuple(__VA_ARGS__))
#define OUT(...) (cout << forward_as_tuple(__VA_ARGS__) << '\n')

#endif  // __INCLUDE_LEVEL__ == 1
0