Skip to content

large_factorial.hpp

SECTIONMath INCLUDEnoya/large_factorial.hpp

不建立线性阶乘表,批量计算多个大参数的 \(n!\bmod p\)

\[ \displaystyle n!=\prod_{i=1}^{n}i \]

Complexity: Time: large_factorials uses O(M(sqrt N) log N + T sqrt N); many_factorials, with B=2^15, uses O(M(B) log B + M(N/B) log(N/B) + sum_b ceil(Q_b/2^b) M(2^b) log(2^b)), where Q_b is the number of queries whose remainder has bit b set. Space: O(sqrt N log N) and O(B log B), respectively.

AC 记录:factorial, many_factorials

跳到代码 · GitHub ↗

Implementation

当前头文件,省略 include guard;依赖见 #include

/// @complexity Time: `large_factorials` uses
/// O(M(sqrt N) log N + T sqrt N); `many_factorials`, with B=2^15, uses
/// O(M(B) log B + M(N/B) log(N/B) +
/// sum_b ceil(Q_b/2^b) M(2^b) log(2^b)), where Q_b is the number of queries
/// whose remainder has bit b set.
/// Space: O(sqrt N log N) and O(B log B), respectively.

#include "noya/combinatorial_sequences.hpp"
#include "noya/polynomial_multipoint.hpp"
#include "noya/polynomial_special_points.hpp"

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdint>
#include <vector>

namespace noya {

namespace large_factorial_detail {

template <class Mint>
std::vector<Mint> factorial_block_prefix(std::uint64_t mx, int blk) {
  int nb = int(mx / blk);
  std::vector<Mint> pre(nb + 1, Mint(1));
  if (nb == 0) {
    return pre;
  }

  std::vector<std::vector<Mint>> fs;
  fs.reserve(blk);
  for (int i = 1; i <= blk; i++) {
    fs.push_back({Mint(i), Mint(1)});
  }
  std::vector<Mint> bp = polynomial_product_sequence(std::move(fs));
  std::vector<Mint> poi(nb);
  for (int i = 0; i < nb; i++) {
    poi[i] = Mint(std::uint64_t(i) * blk);
  }
  std::vector<Mint> prd = polynomial_multipoint_evaluation(bp, poi);
  for (int i = 0; i < nb; i++) {
    pre[i + 1] = pre[i] * prd[i];
  }
  return pre;
}

} // namespace large_factorial_detail

/// @brief Compute several factorials modulo a fixed prime without a linear
/// table. Split 1..N into blocks of length B about sqrt(N). The product inside
/// one block is the degree-B polynomial P(x)=prod_{i=1}^B(x+i); a product tree
/// constructs P and multipoint evaluation obtains P(0),P(B),P(2B),.... Prefix
/// products answer every full block, followed by at most B direct factors.
template <class Mint>
std::vector<Mint> large_factorials(const std::vector<std::uint64_t> &que) {
  if (que.empty()) {
    return {};
  }
  std::uint64_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint64_t(Mint::mod()));
  int blk = int(std::sqrt(static_cast<long double>(mx + 1)));
  blk = std::max(blk, 1);
  while (std::uint64_t(blk) * blk < mx + 1) {
    blk++;
  }
  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);

  std::vector<Mint> res;
  res.reserve(que.size());
  for (std::uint64_t n : que) {
    std::uint64_t com = n / blk;
    Mint val = pre[com];
    for (std::uint64_t i = com * blk + 1; i <= n; i++) {
      val *= Mint(i);
    }
    res.push_back(val);
  }
  return res;
}

/// @brief Compute a large batch of factorials modulo a fixed prime. Boundary
/// values (kB)! are obtained by evaluating the block-product polynomial
/// prod_{i=1}^B(x+i). For a query n=qB+r, split the remaining product
/// (qB+1)...n into power-of-two suffixes. A suffix of length 2^b is the falling
/// factorial polynomial x(x-1)...(x-2^b+1) evaluated at its current right
/// endpoint. Queries sharing b are evaluated in batches of at most 2^b points,
/// so no query performs a linear tail scan.
template <class Mint>
std::vector<Mint> many_factorials(const std::vector<std::uint32_t> &que) {
  if (que.empty()) {
    return {};
  }
  constexpr int lg = 15;
  constexpr int blk = 1 << lg;
  std::uint32_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint32_t(Mint::mod()));

  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);
  std::vector<std::vector<std::pair<Mint, int>>> pts(lg);
  std::vector<Mint> res(que.size());
  for (int qry = 0; qry < int(que.size()); qry++) {
    std::uint32_t n = que[qry];
    int quo = int(n / blk);
    int rem = int(n % blk);
    res[qry] = pre[quo];
    std::uint32_t ndp = n;
    for (int bit = 0; bit < lg; bit++) {
      if ((rem >> bit) & 1) {
        pts[bit].emplace_back(Mint(ndp), qry);
        ndp -= std::uint32_t(1) << bit;
      }
    }
    assert(ndp == std::uint32_t(quo * blk));
  }

  for (int bit = 0; bit < lg; bit++) {
    auto &ite = pts[bit];
    if (ite.empty()) {
      continue;
    }
    int len = 1 << bit;
    std::vector<Mint> ff = stirling_first_kind_row<Mint>(len);
    for (int l = 0; l < int(ite.size()); l += len) {
      int r = std::min(l + len, int(ite.size()));
      std::vector<Mint> poi;
      poi.reserve(r - l);
      for (int idx = l; idx < r; idx++) {
        poi.push_back(ite[idx].first);
      }
      std::vector<Mint> vs = polynomial_multipoint_evaluation(ff, poi);
      for (int idx = l; idx < r; idx++) {
        res[ite[idx].second] *= vs[idx - l];
      }
    }
  }
  return res;
}

} // namespace noya
#ifndef NOYA_LARGE_FACTORIAL_HPP
#define NOYA_LARGE_FACTORIAL_HPP 1

/// @complexity Time: `large_factorials` uses
/// O(M(sqrt N) log N + T sqrt N); `many_factorials`, with B=2^15, uses
/// O(M(B) log B + M(N/B) log(N/B) +
/// sum_b ceil(Q_b/2^b) M(2^b) log(2^b)), where Q_b is the number of queries
/// whose remainder has bit b set.
/// Space: O(sqrt N log N) and O(B log B), respectively.

#include "noya/combinatorial_sequences.hpp"
#include "noya/polynomial_multipoint.hpp"
#include "noya/polynomial_special_points.hpp"

#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdint>
#include <vector>

namespace noya {

namespace large_factorial_detail {

template <class Mint>
std::vector<Mint> factorial_block_prefix(std::uint64_t mx, int blk) {
  int nb = int(mx / blk);
  std::vector<Mint> pre(nb + 1, Mint(1));
  if (nb == 0) {
    return pre;
  }

  std::vector<std::vector<Mint>> fs;
  fs.reserve(blk);
  for (int i = 1; i <= blk; i++) {
    fs.push_back({Mint(i), Mint(1)});
  }
  std::vector<Mint> bp = polynomial_product_sequence(std::move(fs));
  std::vector<Mint> poi(nb);
  for (int i = 0; i < nb; i++) {
    poi[i] = Mint(std::uint64_t(i) * blk);
  }
  std::vector<Mint> prd = polynomial_multipoint_evaluation(bp, poi);
  for (int i = 0; i < nb; i++) {
    pre[i + 1] = pre[i] * prd[i];
  }
  return pre;
}

} // namespace large_factorial_detail

/// @brief Compute several factorials modulo a fixed prime without a linear
/// table. Split 1..N into blocks of length B about sqrt(N). The product inside
/// one block is the degree-B polynomial P(x)=prod_{i=1}^B(x+i); a product tree
/// constructs P and multipoint evaluation obtains P(0),P(B),P(2B),.... Prefix
/// products answer every full block, followed by at most B direct factors.
template <class Mint>
std::vector<Mint> large_factorials(const std::vector<std::uint64_t> &que) {
  if (que.empty()) {
    return {};
  }
  std::uint64_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint64_t(Mint::mod()));
  int blk = int(std::sqrt(static_cast<long double>(mx + 1)));
  blk = std::max(blk, 1);
  while (std::uint64_t(blk) * blk < mx + 1) {
    blk++;
  }
  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);

  std::vector<Mint> res;
  res.reserve(que.size());
  for (std::uint64_t n : que) {
    std::uint64_t com = n / blk;
    Mint val = pre[com];
    for (std::uint64_t i = com * blk + 1; i <= n; i++) {
      val *= Mint(i);
    }
    res.push_back(val);
  }
  return res;
}

/// @brief Compute a large batch of factorials modulo a fixed prime. Boundary
/// values (kB)! are obtained by evaluating the block-product polynomial
/// prod_{i=1}^B(x+i). For a query n=qB+r, split the remaining product
/// (qB+1)...n into power-of-two suffixes. A suffix of length 2^b is the falling
/// factorial polynomial x(x-1)...(x-2^b+1) evaluated at its current right
/// endpoint. Queries sharing b are evaluated in batches of at most 2^b points,
/// so no query performs a linear tail scan.
template <class Mint>
std::vector<Mint> many_factorials(const std::vector<std::uint32_t> &que) {
  if (que.empty()) {
    return {};
  }
  constexpr int lg = 15;
  constexpr int blk = 1 << lg;
  std::uint32_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint32_t(Mint::mod()));

  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);
  std::vector<std::vector<std::pair<Mint, int>>> pts(lg);
  std::vector<Mint> res(que.size());
  for (int qry = 0; qry < int(que.size()); qry++) {
    std::uint32_t n = que[qry];
    int quo = int(n / blk);
    int rem = int(n % blk);
    res[qry] = pre[quo];
    std::uint32_t ndp = n;
    for (int bit = 0; bit < lg; bit++) {
      if ((rem >> bit) & 1) {
        pts[bit].emplace_back(Mint(ndp), qry);
        ndp -= std::uint32_t(1) << bit;
      }
    }
    assert(ndp == std::uint32_t(quo * blk));
  }

  for (int bit = 0; bit < lg; bit++) {
    auto &ite = pts[bit];
    if (ite.empty()) {
      continue;
    }
    int len = 1 << bit;
    std::vector<Mint> ff = stirling_first_kind_row<Mint>(len);
    for (int l = 0; l < int(ite.size()); l += len) {
      int r = std::min(l + len, int(ite.size()));
      std::vector<Mint> poi;
      poi.reserve(r - l);
      for (int idx = l; idx < r; idx++) {
        poi.push_back(ite[idx].first);
      }
      std::vector<Mint> vs = polynomial_multipoint_evaluation(ff, poi);
      for (int idx = l; idx < r; idx++) {
        res[ite[idx].second] *= vs[idx - l];
      }
    }
  }
  return res;
}

} // namespace noya

#endif // NOYA_LARGE_FACTORIAL_HPP
#include <algorithm>
#include <array>
#include <cassert>
#include <cmath>
#include <cstdint>
#include <functional>
#include <numeric>
#include <optional>
#include <queue>
#include <type_traits>
#include <utility>
#include <vector>

/// @complexity Time: `large_factorials` uses
/// O(M(sqrt N) log N + T sqrt N); `many_factorials`, with B=2^15, uses
/// O(M(B) log B + M(N/B) log(N/B) +
/// sum_b ceil(Q_b/2^b) M(2^b) log(2^b)), where Q_b is the number of queries
/// whose remainder has bit b set.
/// Space: O(sqrt N log N) and O(B log B), respectively.

/// @complexity Time: O(M(n) log n) for each generated sequence, where M(n)
/// is polynomial multiplication time.
/// Space: O(n log n) temporary coefficients.

/// @complexity Time: O(M(n) log n) for inverse/log/exp with convolution cost M(n).
/// Space: O(n log n) temporary coefficients.

/// @complexity Time: O(log^2 p).
/// Space: O(1).

/// @complexity Time: O(log^3 n) primality testing; Pollard-rho factorization is expected about O(n^(1/4)).
/// Space: O(log n) recursion and factors.

namespace noya {
namespace factorize_internal {

using u64 = std::uint64_t;
using u128 = unsigned __int128;

inline u64 multiply_mod(u64 a, u64 b, u64 mod) {
  return u64(u128(a) * b % mod);
}

inline u64 power_mod(u64 a, u64 exp, u64 mod) {
  u64 res = 1;
  while (exp > 0) {
    if (exp & 1) {
      res = multiply_mod(res, a, mod);
    }
    a = multiply_mod(a, a, mod);
    exp >>= 1;
  }
  return res;
}

inline bool miller_rabin(u64 n) {
  if (n < 2) {
    return false;
  }
  for (u64 p :
       std::array<u64, 12>{2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37}) {
    if (n % p == 0) {
      return n == p;
    }
  }
  int shf = __builtin_ctzll(n - 1);
  u64 odd = (n - 1) >> shf;
  for (u64 bas :
       std::array<u64, 7>{2, 325, 9375, 28178, 450775, 9780504, 1795265022}) {
    if (bas % n == 0) {
      continue;
    }
    u64 val = power_mod(bas % n, odd, n);
    if (val == 1 || val == n - 1) {
      continue;
    }
    bool cmp = true;
    for (int i = 1; i < shf; i++) {
      val = multiply_mod(val, val, n);
      if (val == n - 1) {
        cmp = false;
        break;
      }
    }
    if (cmp) {
      return false;
    }
  }
  return true;
}

inline u64 splitmix64(u64 &st) {
  u64 z = (st += 0x9e3779b97f4a7c15ULL);
  z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9ULL;
  z = (z ^ (z >> 27)) * 0x94d049bb133111ebULL;
  return z ^ (z >> 31);
}

inline u64 pollard_rho(u64 n) {
  if (n % 2 == 0) {
    return 2;
  }
  if (n % 3 == 0) {
    return 3;
  }
  static u64 st = 0x123456789abcdef0ULL;
  while (true) {
    u64 y = splitmix64(st) % (n - 1) + 1;
    u64 c = splitmix64(st) % (n - 1) + 1;
    constexpr u64 blk = 128;
    u64 g = 1;
    u64 r = 1;
    u64 q = 1;
    u64 x = 0;
    u64 sy = 0;
    auto nxt = [&](u64 val) {
      return u64((u128(multiply_mod(val, val, n)) + c) % n);
    };
    while (g == 1) {
      x = y;
      for (u64 i = 0; i < r; i++) {
        y = nxt(y);
      }
      for (u64 off = 0; off < r && g == 1; off += blk) {
        sy = y;
        for (u64 i = 0; i < std::min(blk, r - off); i++) {
          y = nxt(y);
          u64 dif = x > y ? x - y : y - x;
          q = multiply_mod(q, dif, n);
        }
        g = std::gcd(q, n);
      }
      r <<= 1;
    }
    if (g == n) {
      do {
        sy = nxt(sy);
        u64 dif = x > sy ? x - sy : sy - x;
        g = std::gcd(dif, n);
      } while (g == 1);
    }
    if (g != n) {
      return g;
    }
  }
}

inline void collect_factors(u64 n, std::vector<u64> &res) {
  if (n == 1) {
    return;
  }
  if (miller_rabin(n)) {
    res.push_back(n);
    return;
  }
  u64 fct = pollard_rho(n);
  collect_factors(fct, res);
  collect_factors(n / fct, res);
}

} // namespace factorize_internal

/// @brief Deterministic Miller-Rabin primality test for unsigned 64-bit
/// integers.
inline bool is_prime(std::uint64_t n) {
  return factorize_internal::miller_rabin(n);
}

/// @brief Return the prime factors of n with multiplicity in increasing order.
inline std::vector<std::uint64_t> prime_factors(std::uint64_t n) {
  assert(n >= 1);
  std::vector<std::uint64_t> res;
  factorize_internal::collect_factors(n, res);
  std::sort(res.begin(), res.end());
  return res;
}

/// @brief Return the prime factorization of n as (prime, exponent) pairs.
inline std::vector<std::pair<std::uint64_t, int>> factorize(std::uint64_t n) {
  std::vector<std::pair<std::uint64_t, int>> res;
  for (std::uint64_t p : prime_factors(n)) {
    if (res.empty() || res.back().first != p) {
      res.emplace_back(p, 1);
    } else {
      res.back().second++;
    }
  }
  return res;
}

} // namespace noya

namespace noya {

/// @brief Compute the smaller square root modulo a prime, or nullopt if no
/// square root exists.
inline std::optional<std::uint64_t> mod_sqrt(std::uint64_t val,
                                             std::uint64_t mod) {
  assert(mod >= 2 && is_prime(mod));
  val %= mod;
  if (mod == 2 || val == 0) {
    return val;
  }
  using factorize_internal::multiply_mod;
  using factorize_internal::power_mod;
  if (power_mod(val, (mod - 1) / 2, mod) != 1) {
    return std::nullopt;
  }
  if (mod % 4 == 3) {
    std::uint64_t rt = power_mod(val, (mod + 1) / 4, mod);
    return std::min(rt, mod - rt);
  }

  std::uint64_t odd = mod - 1;
  int exp = 0;
  while ((odd & 1) == 0) {
    odd >>= 1;
    exp++;
  }
  std::uint64_t nqr = 2;
  while (power_mod(nqr, (mod - 1) / 2, mod) != mod - 1) {
    nqr++;
  }

  std::uint64_t rt = power_mod(val, (odd + 1) / 2, mod);
  std::uint64_t rem = power_mod(val, odd, mod);
  std::uint64_t ste = power_mod(nqr, odd, mod);
  int rmn = exp;
  while (rem != 1) {
    std::uint64_t squ = rem;
    int shf = 0;
    while (squ != 1 && shf < rmn) {
      squ = multiply_mod(squ, squ, mod);
      shf++;
    }
    assert(shf < rmn);
    std::uint64_t mul =
        power_mod(ste, std::uint64_t(1) << (rmn - shf - 1), mod);
    rt = multiply_mod(rt, mul, mod);
    ste = multiply_mod(mul, mul, mod);
    rem = multiply_mod(rem, ste, mod);
    rmn = shf;
  }
  return std::min(rt, mod - rt);
}

} // namespace noya

/// @complexity Time: O(M(n) log n) inverse/division and O(M(n)) Taylor shift.
/// Space: O(n log n) temporaries.

#ifdef _MSC_VER
#include <intrin.h>
#endif

#if __cplusplus >= 202002L
#include <bit>
#endif

namespace atcoder {

namespace internal {

#if __cplusplus >= 202002L

using std::bit_ceil;

#else

// @return same with std::bit::bit_ceil
unsigned int bit_ceil(unsigned int n) {
    unsigned int x = 1;
    while (x < (unsigned int)(n)) x *= 2;
    return x;
}

#endif

// @param n `1 <= n`
// @return same with std::bit::countr_zero
int countr_zero(unsigned int n) {
#ifdef _MSC_VER
    unsigned long index;
    _BitScanForward(&index, n);
    return index;
#else
    return __builtin_ctz(n);
#endif
}

// @param n `1 <= n`
// @return same with std::bit::countr_zero
constexpr int countr_zero_constexpr(unsigned int n) {
    int x = 0;
    while (!(n & (1 << x))) x++;
    return x;
}

}  // namespace internal

}  // namespace atcoder

#ifdef _MSC_VER
#include <intrin.h>
#endif

#ifdef _MSC_VER
#include <intrin.h>
#endif

namespace atcoder {

namespace internal {

// @param m `1 <= m`
// @return x mod m
constexpr long long safe_mod(long long x, long long m) {
    x %= m;
    if (x < 0) x += m;
    return x;
}

// Fast modular multiplication by barrett reduction
// Reference: https://en.wikipedia.org/wiki/Barrett_reduction
// NOTE: reconsider after Ice Lake
struct barrett {
    unsigned int _m;
    unsigned long long im;

    // @param m `1 <= m`
    explicit barrett(unsigned int m) : _m(m), im((unsigned long long)(-1) / m + 1) {}

    // @return m
    unsigned int umod() const { return _m; }

    // @param a `0 <= a < m`
    // @param b `0 <= b < m`
    // @return `a * b % m`
    unsigned int mul(unsigned int a, unsigned int b) const {
        // [1] m = 1
        // a = b = im = 0, so okay

        // [2] m >= 2
        // im = ceil(2^64 / m)
        // -> im * m = 2^64 + r (0 <= r < m)
        // let z = a*b = c*m + d (0 <= c, d < m)
        // a*b * im = (c*m + d) * im = c*(im*m) + d*im = c*2^64 + c*r + d*im
        // c*r + d*im < m * m + m * im < m * m + 2^64 + m <= 2^64 + m * (m + 1) < 2^64 * 2
        // ((ab * im) >> 64) == c or c + 1
        unsigned long long z = a;
        z *= b;
#ifdef _MSC_VER
        unsigned long long x;
        _umul128(z, im, &x);
#else
        unsigned long long x =
            (unsigned long long)(((unsigned __int128)(z)*im) >> 64);
#endif
        unsigned long long y = x * _m;
        return (unsigned int)(z - y + (z < y ? _m : 0));
    }
};

// @param n `0 <= n`
// @param m `1 <= m`
// @return `(x ** n) % m`
constexpr long long pow_mod_constexpr(long long x, long long n, int m) {
    if (m == 1) return 0;
    unsigned int _m = (unsigned int)(m);
    unsigned long long r = 1;
    unsigned long long y = safe_mod(x, m);
    while (n) {
        if (n & 1) r = (r * y) % _m;
        y = (y * y) % _m;
        n >>= 1;
    }
    return r;
}

// Reference:
// M. Forisek and J. Jancina,
// Fast Primality Testing for Integers That Fit into a Machine Word
// @param n `0 <= n`
constexpr bool is_prime_constexpr(int n) {
    if (n <= 1) return false;
    if (n == 2 || n == 7 || n == 61) return true;
    if (n % 2 == 0) return false;
    long long d = n - 1;
    while (d % 2 == 0) d /= 2;
    constexpr long long bases[3] = {2, 7, 61};
    for (long long a : bases) {
        long long t = d;
        long long y = pow_mod_constexpr(a, t, n);
        while (t != n - 1 && y != 1 && y != n - 1) {
            y = y * y % n;
            t <<= 1;
        }
        if (y != n - 1 && t % 2 == 0) {
            return false;
        }
    }
    return true;
}
template <int n> constexpr bool is_prime = is_prime_constexpr(n);

// @param b `1 <= b`
// @return pair(g, x) s.t. g = gcd(a, b), xa = g (mod b), 0 <= x < b/g
constexpr std::pair<long long, long long> inv_gcd(long long a, long long b) {
    a = safe_mod(a, b);
    if (a == 0) return {b, 0};

    // Contracts:
    // [1] s - m0 * a = 0 (mod b)
    // [2] t - m1 * a = 0 (mod b)
    // [3] s * |m1| + t * |m0| <= b
    long long s = b, t = a;
    long long m0 = 0, m1 = 1;

    while (t) {
        long long u = s / t;
        s -= t * u;
        m0 -= m1 * u;  // |m1 * u| <= |m1| * s <= b

        // [3]:
        // (s - t * u) * |m1| + t * |m0 - m1 * u|
        // <= s * |m1| - t * u * |m1| + t * (|m0| + |m1| * u)
        // = s * |m1| + t * |m0| <= b

        auto tmp = s;
        s = t;
        t = tmp;
        tmp = m0;
        m0 = m1;
        m1 = tmp;
    }
    // by [3]: |m0| <= b/g
    // by g != b: |m0| < b/g
    if (m0 < 0) m0 += b / s;
    return {s, m0};
}

// Compile time primitive root
// @param m must be prime
// @return primitive root (and minimum in now)
constexpr int primitive_root_constexpr(int m) {
    if (m == 2) return 1;
    if (m == 167772161) return 3;
    if (m == 469762049) return 3;
    if (m == 754974721) return 11;
    if (m == 998244353) return 3;
    int divs[20] = {};
    divs[0] = 2;
    int cnt = 1;
    int x = (m - 1) / 2;
    while (x % 2 == 0) x /= 2;
    for (int i = 3; (long long)(i)*i <= x; i += 2) {
        if (x % i == 0) {
            divs[cnt++] = i;
            while (x % i == 0) {
                x /= i;
            }
        }
    }
    if (x > 1) {
        divs[cnt++] = x;
    }
    for (int g = 2;; g++) {
        bool ok = true;
        for (int i = 0; i < cnt; i++) {
            if (pow_mod_constexpr(g, (m - 1) / divs[i], m) == 1) {
                ok = false;
                break;
            }
        }
        if (ok) return g;
    }
}
template <int m> constexpr int primitive_root = primitive_root_constexpr(m);

// @param n `n < 2^32`
// @param m `1 <= m < 2^32`
// @return sum_{i=0}^{n-1} floor((ai + b) / m) (mod 2^64)
unsigned long long floor_sum_unsigned(unsigned long long n,
                                      unsigned long long m,
                                      unsigned long long a,
                                      unsigned long long b) {
    unsigned long long ans = 0;
    while (true) {
        if (a >= m) {
            ans += n * (n - 1) / 2 * (a / m);
            a %= m;
        }
        if (b >= m) {
            ans += n * (b / m);
            b %= m;
        }

        unsigned long long y_max = a * n + b;
        if (y_max < m) break;
        // y_max < m * (n + 1)
        // floor(y_max / m) <= n
        n = (unsigned long long)(y_max / m);
        b = (unsigned long long)(y_max % m);
        std::swap(m, a);
    }
    return ans;
}

}  // namespace internal

}  // namespace atcoder

namespace atcoder {

namespace internal {

#ifndef _MSC_VER
template <class T>
using is_signed_int128 =
    typename std::conditional<std::is_same<T, __int128_t>::value ||
                                  std::is_same<T, __int128>::value,
                              std::true_type,
                              std::false_type>::type;

template <class T>
using is_unsigned_int128 =
    typename std::conditional<std::is_same<T, __uint128_t>::value ||
                                  std::is_same<T, unsigned __int128>::value,
                              std::true_type,
                              std::false_type>::type;

template <class T>
using make_unsigned_int128 =
    typename std::conditional<std::is_same<T, __int128_t>::value,
                              __uint128_t,
                              unsigned __int128>;

template <class T>
using is_integral = typename std::conditional<std::is_integral<T>::value ||
                                                  is_signed_int128<T>::value ||
                                                  is_unsigned_int128<T>::value,
                                              std::true_type,
                                              std::false_type>::type;

template <class T>
using is_signed_int = typename std::conditional<(is_integral<T>::value &&
                                                 std::is_signed<T>::value) ||
                                                    is_signed_int128<T>::value,
                                                std::true_type,
                                                std::false_type>::type;

template <class T>
using is_unsigned_int =
    typename std::conditional<(is_integral<T>::value &&
                               std::is_unsigned<T>::value) ||
                                  is_unsigned_int128<T>::value,
                              std::true_type,
                              std::false_type>::type;

template <class T>
using to_unsigned = typename std::conditional<
    is_signed_int128<T>::value,
    make_unsigned_int128<T>,
    typename std::conditional<std::is_signed<T>::value,
                              std::make_unsigned<T>,
                              std::common_type<T>>::type>::type;

#else

template <class T> using is_integral = typename std::is_integral<T>;

template <class T>
using is_signed_int =
    typename std::conditional<is_integral<T>::value && std::is_signed<T>::value,
                              std::true_type,
                              std::false_type>::type;

template <class T>
using is_unsigned_int =
    typename std::conditional<is_integral<T>::value &&
                                  std::is_unsigned<T>::value,
                              std::true_type,
                              std::false_type>::type;

template <class T>
using to_unsigned = typename std::conditional<is_signed_int<T>::value,
                                              std::make_unsigned<T>,
                                              std::common_type<T>>::type;

#endif

template <class T>
using is_signed_int_t = std::enable_if_t<is_signed_int<T>::value>;

template <class T>
using is_unsigned_int_t = std::enable_if_t<is_unsigned_int<T>::value>;

template <class T> using to_unsigned_t = typename to_unsigned<T>::type;

}  // namespace internal

}  // namespace atcoder

namespace atcoder {

namespace internal {

struct modint_base {};
struct static_modint_base : modint_base {};

template <class T> using is_modint = std::is_base_of<modint_base, T>;
template <class T> using is_modint_t = std::enable_if_t<is_modint<T>::value>;

}  // namespace internal

template <int m, std::enable_if_t<(1 <= m)>* = nullptr>
struct static_modint : internal::static_modint_base {
    using mint = static_modint;

  public:
    static constexpr int mod() { return m; }
    static mint raw(int v) {
        mint x;
        x._v = v;
        return x;
    }

    static_modint() : _v(0) {}
    template <class T, internal::is_signed_int_t<T>* = nullptr>
    static_modint(T v) {
        long long x = (long long)(v % (long long)(umod()));
        if (x < 0) x += umod();
        _v = (unsigned int)(x);
    }
    template <class T, internal::is_unsigned_int_t<T>* = nullptr>
    static_modint(T v) {
        _v = (unsigned int)(v % umod());
    }

    int val() const { return _v; }

    mint& operator++() {
        _v++;
        if (_v == umod()) _v = 0;
        return *this;
    }
    mint& operator--() {
        if (_v == 0) _v = umod();
        _v--;
        return *this;
    }
    mint operator++(int) {
        mint result = *this;
        ++*this;
        return result;
    }
    mint operator--(int) {
        mint result = *this;
        --*this;
        return result;
    }

    mint& operator+=(const mint& rhs) {
        _v += rhs._v;
        if (_v >= umod()) _v -= umod();
        return *this;
    }
    mint& operator-=(const mint& rhs) {
        _v -= rhs._v;
        if (_v >= umod()) _v += umod();
        return *this;
    }
    mint& operator*=(const mint& rhs) {
        unsigned long long z = _v;
        z *= rhs._v;
        _v = (unsigned int)(z % umod());
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }

    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }

    mint pow(long long n) const {
        assert(0 <= n);
        mint x = *this, r = 1;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const {
        if (prime) {
            assert(_v);
            return pow(umod() - 2);
        } else {
            auto eg = internal::inv_gcd(_v, m);
            assert(eg.first == 1);
            return eg.second;
        }
    }

    friend mint operator+(const mint& lhs, const mint& rhs) {
        return mint(lhs) += rhs;
    }
    friend mint operator-(const mint& lhs, const mint& rhs) {
        return mint(lhs) -= rhs;
    }
    friend mint operator*(const mint& lhs, const mint& rhs) {
        return mint(lhs) *= rhs;
    }
    friend mint operator/(const mint& lhs, const mint& rhs) {
        return mint(lhs) /= rhs;
    }
    friend bool operator==(const mint& lhs, const mint& rhs) {
        return lhs._v == rhs._v;
    }
    friend bool operator!=(const mint& lhs, const mint& rhs) {
        return lhs._v != rhs._v;
    }

  private:
    unsigned int _v;
    static constexpr unsigned int umod() { return m; }
    static constexpr bool prime = internal::is_prime<m>;
};

template <int id> struct dynamic_modint : internal::modint_base {
    using mint = dynamic_modint;

  public:
    static int mod() { return (int)(bt.umod()); }
    static void set_mod(int m) {
        assert(1 <= m);
        bt = internal::barrett(m);
    }
    static mint raw(int v) {
        mint x;
        x._v = v;
        return x;
    }

    dynamic_modint() : _v(0) {}
    template <class T, internal::is_signed_int_t<T>* = nullptr>
    dynamic_modint(T v) {
        long long x = (long long)(v % (long long)(mod()));
        if (x < 0) x += mod();
        _v = (unsigned int)(x);
    }
    template <class T, internal::is_unsigned_int_t<T>* = nullptr>
    dynamic_modint(T v) {
        _v = (unsigned int)(v % mod());
    }

    int val() const { return _v; }

    mint& operator++() {
        _v++;
        if (_v == umod()) _v = 0;
        return *this;
    }
    mint& operator--() {
        if (_v == 0) _v = umod();
        _v--;
        return *this;
    }
    mint operator++(int) {
        mint result = *this;
        ++*this;
        return result;
    }
    mint operator--(int) {
        mint result = *this;
        --*this;
        return result;
    }

    mint& operator+=(const mint& rhs) {
        _v += rhs._v;
        if (_v >= umod()) _v -= umod();
        return *this;
    }
    mint& operator-=(const mint& rhs) {
        _v += mod() - rhs._v;
        if (_v >= umod()) _v -= umod();
        return *this;
    }
    mint& operator*=(const mint& rhs) {
        _v = bt.mul(_v, rhs._v);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }

    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }

    mint pow(long long n) const {
        assert(0 <= n);
        mint x = *this, r = 1;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const {
        auto eg = internal::inv_gcd(_v, mod());
        assert(eg.first == 1);
        return eg.second;
    }

    friend mint operator+(const mint& lhs, const mint& rhs) {
        return mint(lhs) += rhs;
    }
    friend mint operator-(const mint& lhs, const mint& rhs) {
        return mint(lhs) -= rhs;
    }
    friend mint operator*(const mint& lhs, const mint& rhs) {
        return mint(lhs) *= rhs;
    }
    friend mint operator/(const mint& lhs, const mint& rhs) {
        return mint(lhs) /= rhs;
    }
    friend bool operator==(const mint& lhs, const mint& rhs) {
        return lhs._v == rhs._v;
    }
    friend bool operator!=(const mint& lhs, const mint& rhs) {
        return lhs._v != rhs._v;
    }

  private:
    unsigned int _v;
    static internal::barrett bt;
    static unsigned int umod() { return bt.umod(); }
};
template <int id> internal::barrett dynamic_modint<id>::bt(998244353);

using modint998244353 = static_modint<998244353>;
using modint1000000007 = static_modint<1000000007>;
using modint = dynamic_modint<-1>;

namespace internal {

template <class T>
using is_static_modint = std::is_base_of<internal::static_modint_base, T>;

template <class T>
using is_static_modint_t = std::enable_if_t<is_static_modint<T>::value>;

template <class> struct is_dynamic_modint : public std::false_type {};
template <int id>
struct is_dynamic_modint<dynamic_modint<id>> : public std::true_type {};

template <class T>
using is_dynamic_modint_t = std::enable_if_t<is_dynamic_modint<T>::value>;

}  // namespace internal

}  // namespace atcoder

namespace atcoder {

namespace internal {

template <class mint,
          int g = internal::primitive_root<mint::mod()>,
          internal::is_static_modint_t<mint>* = nullptr>
struct fft_info {
    static constexpr int rank2 = countr_zero_constexpr(mint::mod() - 1);
    std::array<mint, rank2 + 1> root;   // root[i]^(2^i) == 1
    std::array<mint, rank2 + 1> iroot;  // root[i] * iroot[i] == 1

    std::array<mint, std::max(0, rank2 - 2 + 1)> rate2;
    std::array<mint, std::max(0, rank2 - 2 + 1)> irate2;

    std::array<mint, std::max(0, rank2 - 3 + 1)> rate3;
    std::array<mint, std::max(0, rank2 - 3 + 1)> irate3;

    fft_info() {
        root[rank2] = mint(g).pow((mint::mod() - 1) >> rank2);
        iroot[rank2] = root[rank2].inv();
        for (int i = rank2 - 1; i >= 0; i--) {
            root[i] = root[i + 1] * root[i + 1];
            iroot[i] = iroot[i + 1] * iroot[i + 1];
        }

        {
            mint prod = 1, iprod = 1;
            for (int i = 0; i <= rank2 - 2; i++) {
                rate2[i] = root[i + 2] * prod;
                irate2[i] = iroot[i + 2] * iprod;
                prod *= iroot[i + 2];
                iprod *= root[i + 2];
            }
        }
        {
            mint prod = 1, iprod = 1;
            for (int i = 0; i <= rank2 - 3; i++) {
                rate3[i] = root[i + 3] * prod;
                irate3[i] = iroot[i + 3] * iprod;
                prod *= iroot[i + 3];
                iprod *= root[i + 3];
            }
        }
    }
};

template <class mint, internal::is_static_modint_t<mint>* = nullptr>
void butterfly(std::vector<mint>& a) {
    int n = int(a.size());
    int h = internal::countr_zero((unsigned int)n);

    static const fft_info<mint> info;

    int len = 0;  // a[i, i+(n>>len), i+2*(n>>len), ..] is transformed
    while (len < h) {
        if (h - len == 1) {
            int p = 1 << (h - len - 1);
            mint rot = 1;
            for (int s = 0; s < (1 << len); s++) {
                int offset = s << (h - len);
                for (int i = 0; i < p; i++) {
                    auto l = a[i + offset];
                    auto r = a[i + offset + p] * rot;
                    a[i + offset] = l + r;
                    a[i + offset + p] = l - r;
                }
                if (s + 1 != (1 << len))
                    rot *= info.rate2[countr_zero(~(unsigned int)(s))];
            }
            len++;
        } else {
            // 4-base
            int p = 1 << (h - len - 2);
            mint rot = 1, imag = info.root[2];
            for (int s = 0; s < (1 << len); s++) {
                mint rot2 = rot * rot;
                mint rot3 = rot2 * rot;
                int offset = s << (h - len);
                for (int i = 0; i < p; i++) {
                    auto mod2 = 1ULL * mint::mod() * mint::mod();
                    auto a0 = 1ULL * a[i + offset].val();
                    auto a1 = 1ULL * a[i + offset + p].val() * rot.val();
                    auto a2 = 1ULL * a[i + offset + 2 * p].val() * rot2.val();
                    auto a3 = 1ULL * a[i + offset + 3 * p].val() * rot3.val();
                    auto a1na3imag =
                        1ULL * mint(a1 + mod2 - a3).val() * imag.val();
                    auto na2 = mod2 - a2;
                    a[i + offset] = a0 + a2 + a1 + a3;
                    a[i + offset + 1 * p] = a0 + a2 + (2 * mod2 - (a1 + a3));
                    a[i + offset + 2 * p] = a0 + na2 + a1na3imag;
                    a[i + offset + 3 * p] = a0 + na2 + (mod2 - a1na3imag);
                }
                if (s + 1 != (1 << len))
                    rot *= info.rate3[countr_zero(~(unsigned int)(s))];
            }
            len += 2;
        }
    }
}

template <class mint, internal::is_static_modint_t<mint>* = nullptr>
void butterfly_inv(std::vector<mint>& a) {
    int n = int(a.size());
    int h = internal::countr_zero((unsigned int)n);

    static const fft_info<mint> info;

    int len = h;  // a[i, i+(n>>len), i+2*(n>>len), ..] is transformed
    while (len) {
        if (len == 1) {
            int p = 1 << (h - len);
            mint irot = 1;
            for (int s = 0; s < (1 << (len - 1)); s++) {
                int offset = s << (h - len + 1);
                for (int i = 0; i < p; i++) {
                    auto l = a[i + offset];
                    auto r = a[i + offset + p];
                    a[i + offset] = l + r;
                    a[i + offset + p] =
                        (unsigned long long)((unsigned int)(l.val() - r.val()) + mint::mod()) *
                        irot.val();
                    ;
                }
                if (s + 1 != (1 << (len - 1)))
                    irot *= info.irate2[countr_zero(~(unsigned int)(s))];
            }
            len--;
        } else {
            // 4-base
            int p = 1 << (h - len);
            mint irot = 1, iimag = info.iroot[2];
            for (int s = 0; s < (1 << (len - 2)); s++) {
                mint irot2 = irot * irot;
                mint irot3 = irot2 * irot;
                int offset = s << (h - len + 2);
                for (int i = 0; i < p; i++) {
                    auto a0 = 1ULL * a[i + offset + 0 * p].val();
                    auto a1 = 1ULL * a[i + offset + 1 * p].val();
                    auto a2 = 1ULL * a[i + offset + 2 * p].val();
                    auto a3 = 1ULL * a[i + offset + 3 * p].val();

                    auto a2na3iimag =
                        1ULL *
                        mint((mint::mod() + a2 - a3) * iimag.val()).val();

                    a[i + offset] = a0 + a1 + a2 + a3;
                    a[i + offset + 1 * p] =
                        (a0 + (mint::mod() - a1) + a2na3iimag) * irot.val();
                    a[i + offset + 2 * p] =
                        (a0 + a1 + (mint::mod() - a2) + (mint::mod() - a3)) *
                        irot2.val();
                    a[i + offset + 3 * p] =
                        (a0 + (mint::mod() - a1) + (mint::mod() - a2na3iimag)) *
                        irot3.val();
                }
                if (s + 1 != (1 << (len - 2)))
                    irot *= info.irate3[countr_zero(~(unsigned int)(s))];
            }
            len -= 2;
        }
    }
}

template <class mint, internal::is_static_modint_t<mint>* = nullptr>
std::vector<mint> convolution_naive(const std::vector<mint>& a,
                                    const std::vector<mint>& b) {
    int n = int(a.size()), m = int(b.size());
    std::vector<mint> ans(n + m - 1);
    if (n < m) {
        for (int j = 0; j < m; j++) {
            for (int i = 0; i < n; i++) {
                ans[i + j] += a[i] * b[j];
            }
        }
    } else {
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                ans[i + j] += a[i] * b[j];
            }
        }
    }
    return ans;
}

template <class mint, internal::is_static_modint_t<mint>* = nullptr>
std::vector<mint> convolution_fft(std::vector<mint> a, std::vector<mint> b) {
    int n = int(a.size()), m = int(b.size());
    int z = (int)internal::bit_ceil((unsigned int)(n + m - 1));
    a.resize(z);
    internal::butterfly(a);
    b.resize(z);
    internal::butterfly(b);
    for (int i = 0; i < z; i++) {
        a[i] *= b[i];
    }
    internal::butterfly_inv(a);
    a.resize(n + m - 1);
    mint iz = mint(z).inv();
    for (int i = 0; i < n + m - 1; i++) a[i] *= iz;
    return a;
}

}  // namespace internal

template <class mint, internal::is_static_modint_t<mint>* = nullptr>
std::vector<mint> convolution(std::vector<mint>&& a, std::vector<mint>&& b) {
    int n = int(a.size()), m = int(b.size());
    if (!n || !m) return {};

    int z = (int)internal::bit_ceil((unsigned int)(n + m - 1));
    assert((mint::mod() - 1) % z == 0);

    if (std::min(n, m) <= 60) return convolution_naive(std::move(a), std::move(b));
    return internal::convolution_fft(std::move(a), std::move(b));
}
template <class mint, internal::is_static_modint_t<mint>* = nullptr>
std::vector<mint> convolution(const std::vector<mint>& a,
                              const std::vector<mint>& b) {
    int n = int(a.size()), m = int(b.size());
    if (!n || !m) return {};

    int z = (int)internal::bit_ceil((unsigned int)(n + m - 1));
    assert((mint::mod() - 1) % z == 0);

    if (std::min(n, m) <= 60) return convolution_naive(a, b);
    return internal::convolution_fft(a, b);
}

template <unsigned int mod = 998244353,
          class T,
          std::enable_if_t<internal::is_integral<T>::value>* = nullptr>
std::vector<T> convolution(const std::vector<T>& a, const std::vector<T>& b) {
    int n = int(a.size()), m = int(b.size());
    if (!n || !m) return {};

    using mint = static_modint<mod>;

    int z = (int)internal::bit_ceil((unsigned int)(n + m - 1));
    assert((mint::mod() - 1) % z == 0);

    std::vector<mint> a2(n), b2(m);
    for (int i = 0; i < n; i++) {
        a2[i] = mint(a[i]);
    }
    for (int i = 0; i < m; i++) {
        b2[i] = mint(b[i]);
    }
    auto c2 = convolution(std::move(a2), std::move(b2));
    std::vector<T> c(n + m - 1);
    for (int i = 0; i < n + m - 1; i++) {
        c[i] = c2[i].val();
    }
    return c;
}

std::vector<long long> convolution_ll(const std::vector<long long>& a,
                                      const std::vector<long long>& b) {
    int n = int(a.size()), m = int(b.size());
    if (!n || !m) return {};

    static constexpr unsigned long long MOD1 = 754974721;  // 2^24
    static constexpr unsigned long long MOD2 = 167772161;  // 2^25
    static constexpr unsigned long long MOD3 = 469762049;  // 2^26
    static constexpr unsigned long long M2M3 = MOD2 * MOD3;
    static constexpr unsigned long long M1M3 = MOD1 * MOD3;
    static constexpr unsigned long long M1M2 = MOD1 * MOD2;
    static constexpr unsigned long long M1M2M3 = MOD1 * MOD2 * MOD3;

    static constexpr unsigned long long i1 =
        internal::inv_gcd(MOD2 * MOD3, MOD1).second;
    static constexpr unsigned long long i2 =
        internal::inv_gcd(MOD1 * MOD3, MOD2).second;
    static constexpr unsigned long long i3 =
        internal::inv_gcd(MOD1 * MOD2, MOD3).second;

    static constexpr int MAX_AB_BIT = 24;
    static_assert(MOD1 % (1ull << MAX_AB_BIT) == 1, "MOD1 isn't enough to support an array length of 2^24.");
    static_assert(MOD2 % (1ull << MAX_AB_BIT) == 1, "MOD2 isn't enough to support an array length of 2^24.");
    static_assert(MOD3 % (1ull << MAX_AB_BIT) == 1, "MOD3 isn't enough to support an array length of 2^24.");
    assert(n + m - 1 <= (1 << MAX_AB_BIT));

    auto c1 = convolution<MOD1>(a, b);
    auto c2 = convolution<MOD2>(a, b);
    auto c3 = convolution<MOD3>(a, b);

    std::vector<long long> c(n + m - 1);
    for (int i = 0; i < n + m - 1; i++) {
        unsigned long long x = 0;
        x += (c1[i] * i1) % MOD1 * M2M3;
        x += (c2[i] * i2) % MOD2 * M1M3;
        x += (c3[i] * i3) % MOD3 * M1M2;
        // B = 2^63, -B <= x, r(real value) < B
        // (x, x - M, x - 2M, or x - 3M) = r (mod 2B)
        // r = c1[i] (mod MOD1)
        // focus on MOD1
        // r = x, x - M', x - 2M', x - 3M' (M' = M % 2^64) (mod 2B)
        // r = x,
        //     x - M' + (0 or 2B),
        //     x - 2M' + (0, 2B or 4B),
        //     x - 3M' + (0, 2B, 4B or 6B) (without mod!)
        // (r - x) = 0, (0)
        //           - M' + (0 or 2B), (1)
        //           -2M' + (0 or 2B or 4B), (2)
        //           -3M' + (0 or 2B or 4B or 6B) (3) (mod MOD1)
        // we checked that
        //   ((1) mod MOD1) mod 5 = 2
        //   ((2) mod MOD1) mod 5 = 3
        //   ((3) mod MOD1) mod 5 = 4
        long long diff =
            c1[i] - internal::safe_mod((long long)(x), (long long)(MOD1));
        if (diff < 0) diff += MOD1;
        static constexpr unsigned long long offset[5] = {
            0, 0, M1M2M3, 2 * M1M2M3, 3 * M1M2M3};
        x -= offset[diff % 5];
        c[i] = x;
    }

    return c;
}

}  // namespace atcoder

namespace noya {

/// @brief Remove trailing zero coefficients from a polynomial.
template <class T> void polynomial_trim(std::vector<T> &pol) {
  while (!pol.empty() && pol.back() == T{}) {
    pol.pop_back();
  }
}

/// @brief Return the formal derivative of a polynomial.
template <class T>
std::vector<T> polynomial_derivative(const std::vector<T> &pol) {
  if (pol.size() <= 1) {
    return {};
  }
  std::vector<T> res(pol.size() - 1);
  for (int i = 1; i < int(pol.size()); i++) {
    res[i - 1] = pol[i] * T(i);
  }
  return res;
}

/// @brief Return the formal integral with constant coefficient zero.
template <class T>
std::vector<T> polynomial_integral(const std::vector<T> &pol) {
  std::vector<T> res(pol.size() + 1);
  for (int i = 0; i < int(pol.size()); i++) {
    res[i + 1] = pol[i] / T(i + 1);
  }
  return res;
}

/// @brief Return the first n coefficients of 1/f using Newton iteration.
template <class Mint>
std::vector<Mint> polynomial_inverse_series(const std::vector<Mint> &f, int n) {
  assert(n >= 0);
  if (n == 0) {
    return {};
  }
  assert(!f.empty() && f[0] != Mint{});
  std::vector<Mint> inv = {Mint(1) / f[0]};
  while (int(inv.size()) < n) {
    int tar = std::min(n, int(inv.size()) * 2);
    std::vector<Mint> pre(tar);
    for (int i = 0; i < std::min(tar, int(f.size())); i++) {
      pre[i] = f[i];
    }
    std::vector<Mint> cor = atcoder::convolution(pre, inv);
    cor.resize(tar);
    for (Mint &val : cor) {
      val = -val;
    }
    cor[0] += Mint(2);
    inv = atcoder::convolution(inv, cor);
    inv.resize(tar);
  }
  return inv;
}

/// @brief Divide f by nonzero g and return (quotient, remainder).
template <class Mint>
std::pair<std::vector<Mint>, std::vector<Mint>>
polynomial_divmod(std::vector<Mint> f, std::vector<Mint> g) {
  polynomial_trim(f);
  polynomial_trim(g);
  assert(!g.empty());
  if (f.size() < g.size()) {
    return {{}, f};
  }
  int nq = int(f.size() - g.size() + 1);
  std::vector<Mint> rf(f.rbegin(), f.rend());
  std::vector<Mint> rg(g.rbegin(), g.rend());
  rf.resize(nq);
  rg.resize(nq);
  std::vector<Mint> inv = polynomial_inverse_series(rg, nq);
  std::vector<Mint> quo = atcoder::convolution(rf, inv);
  quo.resize(nq);
  std::reverse(quo.begin(), quo.end());

  std::vector<Mint> prd = atcoder::convolution(quo, g);
  for (int i = 0; i < int(prd.size()); i++) {
    f[i] -= prd[i];
  }
  polynomial_trim(f);
  return {quo, f};
}

/// @brief Return f(x + shf) in O(M(n)) time.
template <class Mint>
std::vector<Mint> polynomial_taylor_shift(const std::vector<Mint> &f,
                                          Mint shf) {
  int sz = int(f.size());
  if (sz == 0) {
    return {};
  }
  std::vector<Mint> fac(sz, Mint(1));
  std::vector<Mint> ifc(sz, Mint(1));
  for (int i = 1; i < sz; i++) {
    fac[i] = fac[i - 1] * Mint(i);
  }
  ifc.back() = Mint(1) / fac.back();
  for (int i = sz - 1; i > 0; i--) {
    ifc[i - 1] = ifc[i] * Mint(i);
  }

  std::vector<Mint> rev(sz), pow(sz);
  Mint pw = Mint(1);
  for (int i = 0; i < sz; i++) {
    rev[sz - 1 - i] = f[i] * fac[i];
    pow[i] = pw * ifc[i];
    pw *= shf;
  }
  std::vector<Mint> prd = atcoder::convolution(rev, pow);
  std::vector<Mint> res(sz);
  for (int i = 0; i < sz; i++) {
    res[i] = prd[sz - 1 - i] * ifc[i];
  }
  return res;
}

} // namespace noya

namespace noya {

/// @brief Return the first n coefficients of 1/f; requires f[0] != 0.
template <class Mint>
std::vector<Mint> fps_inverse(const std::vector<Mint> &f, int n) {
  return polynomial_inverse_series(f, n);
}

/// @brief Return log(f) modulo x^n; requires f[0] = 1.
template <class Mint>
std::vector<Mint> fps_logarithm(const std::vector<Mint> &f, int n) {
  assert(n >= 0);
  if (n == 0) {
    return {};
  }
  assert(!f.empty() && f[0] == Mint(1));
  std::vector<Mint> df = polynomial_derivative(f);
  std::vector<Mint> inv = fps_inverse(f, n);
  std::vector<Mint> prd = atcoder::convolution(df, inv);
  prd.resize(n - 1);
  std::vector<Mint> res = polynomial_integral(prd);
  res.resize(n);
  return res;
}

/// @brief Return exp(f) modulo x^n; requires f[0] = 0.
template <class Mint>
std::vector<Mint> fps_exponential(const std::vector<Mint> &f, int n) {
  assert(n >= 0);
  if (n == 0) {
    return {};
  }
  assert(f.empty() || f[0] == Mint{});
  std::vector<Mint> res = {Mint(1)};
  while (int(res.size()) < n) {
    int tar = std::min(n, int(res.size()) * 2);
    std::vector<Mint> lg = fps_logarithm(res, tar);
    std::vector<Mint> cor(tar);
    for (int i = 0; i < tar; i++) {
      if (i < int(f.size())) {
        cor[i] += f[i];
      }
      cor[i] -= lg[i];
    }
    cor[0] += Mint(1);
    res = atcoder::convolution(res, cor);
    res.resize(tar);
  }
  return res;
}

/// @brief Compute vl^exp by binary exponentiation.
template <class Mint> Mint fps_scalar_power(Mint vl, std::uint64_t exp) {
  Mint res = Mint(1);
  while (exp > 0) {
    if (exp & 1) {
      res *= vl;
    }
    vl *= vl;
    exp >>= 1;
  }
  return res;
}

/// @brief Return f^exp modulo x^n for a nonnegative exponent.
template <class Mint>
std::vector<Mint> fps_power(const std::vector<Mint> &f, std::uint64_t exp,
                            int n) {
  assert(n >= 0);
  if (n == 0) {
    return {};
  }
  std::vector<Mint> zer(n);
  if (exp == 0) {
    zer[0] = Mint(1);
    return zer;
  }
  int a = 0;
  while (a < int(f.size()) && f[a] == Mint{}) {
    a++;
  }
  if (a == int(f.size()) || (a > 0 && exp > std::uint64_t((n - 1) / a))) {
    return zer;
  }
  int shf = int(std::uint64_t(a) * exp);
  int tar = n - shf;
  Mint ld = f[a];
  std::vector<Mint> nrm(tar);
  for (int i = 0; i < tar && a + i < int(f.size()); i++) {
    nrm[i] = f[a + i] / ld;
  }
  std::vector<Mint> lg = fps_logarithm(nrm, tar);
  Mint e = Mint(exp);
  for (Mint &vl : lg) {
    vl *= e;
  }
  std::vector<Mint> pow = fps_exponential(lg, tar);
  Mint lp = fps_scalar_power(ld, exp);
  for (Mint &vl : pow) {
    vl *= lp;
  }
  std::vector<Mint> res(n);
  for (int i = 0; i < tar; i++) {
    res[shf + i] = pow[i];
  }
  return res;
}

/// @brief Return a formal square root of f modulo x^n, if one exists.
template <class Mint>
std::optional<std::vector<Mint>> fps_square_root(const std::vector<Mint> &f,
                                                 int n) {
  assert(n >= 0);
  if (n == 0) {
    return std::vector<Mint>{};
  }
  int a = 0;
  while (a < std::min(n, int(f.size())) && f[a] == Mint{}) {
    a++;
  }
  if (a == std::min(n, int(f.size()))) {
    return std::vector<Mint>(n);
  }
  if (a & 1) {
    return std::nullopt;
  }
  if (a > 0) {
    int shf = a / 2;
    int tar = n - a;
    std::vector<Mint> red(tar);
    for (int i = 0; i < tar && a + i < int(f.size()); i++) {
      red[i] = f[a + i];
    }
    auto rt = fps_square_root(red, tar);
    if (!rt) {
      return std::nullopt;
    }
    std::vector<Mint> res(n);
    for (int i = 0; i < int(rt->size()) && shf + i < n; i++) {
      res[shf + i] = (*rt)[i];
    }
    return res;
  }

  auto c0 = mod_sqrt(std::uint64_t(f[0].val()), std::uint64_t(Mint::mod()));
  if (!c0) {
    return std::nullopt;
  }
  std::vector<Mint> res = {Mint(*c0)};
  Mint iv2 = Mint(1) / Mint(2);
  while (int(res.size()) < n) {
    int tar = std::min(n, int(res.size()) * 2);
    std::vector<Mint> pre(tar);
    for (int i = 0; i < tar && i < int(f.size()); i++) {
      pre[i] = f[i];
    }
    std::vector<Mint> quo =
        atcoder::convolution(pre, polynomial_inverse_series(res, tar));
    quo.resize(tar);
    res.resize(tar);
    for (int i = 0; i < tar; i++) {
      res[i] = (res[i] + quo[i]) * iv2;
    }
  }
  return res;
}

} // namespace noya

namespace noya {

template <class Mint>
std::pair<std::vector<Mint>, std::vector<Mint>> factorials_and_inverses(int n) {
  std::vector<Mint> fac(n + 1, Mint(1));
  std::vector<Mint> ifc(n + 1, Mint(1));
  for (int i = 1; i <= n; i++) {
    fac[i] = fac[i - 1] * Mint(i);
  }
  ifc[n] = Mint(1) / fac[n];
  for (int i = n; i > 0; i--) {
    ifc[i - 1] = ifc[i] * Mint(i);
  }
  return {fac, ifc};
}

/// @brief Return B_0 through B_n. Their exponential generating function is
/// exp(exp(x)-1), so one FPS exponential followed by factorial scaling yields
/// all Bell numbers simultaneously.
template <class Mint> std::vector<Mint> bell_numbers(int n) {
  auto [fac, ifc] = factorials_and_inverses<Mint>(n);
  std::vector<Mint> exp(n + 1);
  for (int i = 1; i <= n; i++) {
    exp[i] = ifc[i];
  }
  auto res = fps_exponential(exp, n + 1);
  for (int i = 0; i <= n; i++) {
    res[i] *= fac[i];
  }
  return res;
}

/// @brief Return B_0 through B_n with B_1=-1/2. Since
/// x/(exp(x)-1)=1/(sum_{i>=0} x^i/(i+1)!), a series inverse and factorial
/// scaling produce all Bernoulli numbers.
template <class Mint> std::vector<Mint> bernoulli_numbers(int n) {
  auto [fac, ifc] = factorials_and_inverses<Mint>(n + 1);
  std::vector<Mint> den(n + 1);
  for (int i = 0; i <= n; i++) {
    den[i] = ifc[i + 1];
  }
  auto res = fps_inverse(den, n + 1);
  for (int i = 0; i <= n; i++) {
    res[i] *= fac[i];
  }
  return res;
}

/// @brief Return p(0) through p(n). Taking the logarithm of Euler's product
/// gives log P(x)=sum_{m>=1}(sum_{d|m}1/d)x^m; exponentiating this divisor-sum
/// series recovers the partition generating function.
template <class Mint> std::vector<Mint> partition_numbers(int n) {
  std::vector<Mint> inv(n + 1);
  if (n >= 1) {
    inv[1] = Mint(1);
  }
  for (int i = 2; i <= n; i++) {
    inv[i] = Mint(1) / Mint(i);
  }
  std::vector<Mint> lg(n + 1);
  for (int par = 1; par <= n; par++) {
    for (int cnt = 1; par * cnt <= n; cnt++) {
      lg[par * cnt] += inv[cnt];
    }
  }
  return fps_exponential(lg, n + 1);
}

namespace combinatorial_sequences_detail {

template <class Mint>
std::vector<Mint> consecutive_linear_product(int l, int r) {
  if (r - l == 0) {
    return {Mint(1)};
  }
  if (r - l == 1) {
    return {-Mint(l), Mint(1)};
  }
  int mid = (l + r) / 2;
  auto a = consecutive_linear_product<Mint>(l, mid);
  auto b = consecutive_linear_product<Mint>(mid, r);
  return atcoder::convolution(a, b);
}

} // namespace combinatorial_sequences_detail

/// @brief Return the signed first-kind Stirling row s(n,0..n) by building the
/// product x(x-1)...(x-n+1) with a balanced convolution tree.
template <class Mint> std::vector<Mint> stirling_first_kind_row(int n) {
  return combinatorial_sequences_detail::consecutive_linear_product<Mint>(0, n);
}

/// @brief Return the second-kind Stirling row S(n,0..n). Expanding
/// S(n,k)=1/k! sum_i (-1)^(k-i) binom(k,i)i^n turns the whole row into one
/// convolution of the sequences (-1)^i/i! and i^n/i!.
template <class Mint> std::vector<Mint> stirling_second_kind_row(int n) {
  auto [fac, ifc] = factorials_and_inverses<Mint>(n);
  std::vector<Mint> sig(n + 1), pw(n + 1);
  for (int i = 0; i <= n; i++) {
    sig[i] = (i & 1) ? -ifc[i] : ifc[i];
    pw[i] = Mint(i).pow(n) * ifc[i];
  }
  auto res = atcoder::convolution(sig, pw);
  res.resize(n + 1);
  return res;
}

/// @brief Return s(k,k) through s(n,k). The exponential generating function
/// for a fixed column is log(1+x)^k/k!; coefficient extraction only requires
/// one FPS power and factorial scaling.
template <class Mint>
std::vector<Mint> stirling_first_kind_fixed_column(int n, int k) {
  auto [fac, ifc] = factorials_and_inverses<Mint>(n);
  std::vector<Mint> lg(n + 1);
  for (int i = 1; i <= n; i++) {
    lg[i] = Mint(1) / Mint(i);
    if (i % 2 == 0) {
      lg[i] = -lg[i];
    }
  }
  auto ser = fps_power(lg, std::uint64_t(k), n + 1);
  std::vector<Mint> res(n - k + 1);
  for (int i = k; i <= n; i++) {
    res[i - k] = ser[i] * fac[i] * ifc[k];
  }
  return res;
}

/// @brief Return S(k,k) through S(n,k). The fixed-column exponential
/// generating function is (exp(x)-1)^k/k!, so FPS exponentiation and power
/// followed by factorial scaling produce the column.
template <class Mint>
std::vector<Mint> stirling_second_kind_fixed_column(int n, int k) {
  auto [fac, ifc] = factorials_and_inverses<Mint>(n);
  std::vector<Mint> ex(n + 1);
  for (int i = 1; i <= n; i++) {
    ex[i] = ifc[i];
  }
  auto ser = fps_power(ex, std::uint64_t(k), n + 1);
  std::vector<Mint> res(n - k + 1);
  for (int i = k; i <= n; i++) {
    res[i - k] = ser[i] * fac[i] * ifc[k];
  }
  return res;
}

} // namespace noya

/// @complexity Time: O(M(n) log n) evaluation/interpolation.
/// Space: O(n log n) product tree.

namespace noya {

namespace polynomial_multipoint_internal {

template <class Mint> struct product_tree {
  int np = 0;
  int sz = 1;
  std::vector<std::vector<Mint>> prd;

  explicit product_tree(const std::vector<Mint> &poi) : np(int(poi.size())) {
    while (sz < np) {
      sz *= 2;
    }
    prd.assign(sz * 2, std::vector<Mint>{Mint(1)});
    for (int i = 0; i < np; i++) {
      prd[sz + i] = {-poi[i], Mint(1)};
    }
    for (int id = sz - 1; id > 0; id--) {
      prd[id] = atcoder::convolution(prd[id * 2], prd[id * 2 + 1]);
    }
  }

  std::vector<Mint> evaluate(const std::vector<Mint> &pol) const {
    if (np == 0) {
      return {};
    }
    std::vector<std::vector<Mint>> rem(sz * 2);
    rem[1] = polynomial_divmod(pol, prd[1]).second;
    for (int id = 1; id < sz; id++) {
      rem[id * 2] = polynomial_divmod(rem[id], prd[id * 2]).second;
      rem[id * 2 + 1] = polynomial_divmod(rem[id], prd[id * 2 + 1]).second;
    }
    std::vector<Mint> res(np);
    for (int i = 0; i < np; i++) {
      if (!rem[sz + i].empty()) {
        res[i] = rem[sz + i][0];
      }
    }
    return res;
  }
};

template <class Mint>
std::vector<Mint> add_polynomials(std::vector<Mint> l,
                                  const std::vector<Mint> &r) {
  l.resize(std::max(l.size(), r.size()));
  for (int i = 0; i < int(r.size()); i++) {
    l[i] += r[i];
  }
  polynomial_trim(l);
  return l;
}

} // namespace polynomial_multipoint_internal

/// @brief Evaluate a polynomial at all points in O((n + degree) log^2 n)
/// field operations using a product tree.
template <class Mint>
std::vector<Mint>
polynomial_multipoint_evaluation(const std::vector<Mint> &pol,
                                 const std::vector<Mint> &poi) {
  return polynomial_multipoint_internal::product_tree<Mint>(poi).evaluate(pol);
}

/// @brief Interpolate the unique degree < n polynomial through n distinct
/// points in O(n log^2 n) field operations.
template <class Mint>
std::vector<Mint> polynomial_interpolation(const std::vector<Mint> &poi,
                                           const std::vector<Mint> &vs) {
  assert(poi.size() == vs.size());
  int n = int(poi.size());
  if (n == 0) {
    return {};
  }
  polynomial_multipoint_internal::product_tree<Mint> tre(poi);
  std::vector<Mint> df = polynomial_derivative(tre.prd[1]);
  std::vector<Mint> ds = tre.evaluate(df);
  std::vector<std::vector<Mint>> ntr(tre.sz * 2);
  for (int i = 0; i < n; i++) {
    assert(ds[i] != Mint{});
    ntr[tre.sz + i] = {vs[i] / ds[i]};
  }
  for (int i = n; i < tre.sz; i++) {
    ntr[tre.sz + i] = {};
  }
  using polynomial_multipoint_internal::add_polynomials;
  for (int id = tre.sz - 1; id > 0; id--) {
    std::vector<Mint> l =
        atcoder::convolution(ntr[id * 2], tre.prd[id * 2 + 1]);
    std::vector<Mint> r =
        atcoder::convolution(ntr[id * 2 + 1], tre.prd[id * 2]);
    ntr[id] = add_polynomials(std::move(l), r);
  }
  ntr[1].resize(n);
  polynomial_trim(ntr[1]);
  return ntr[1];
}

} // namespace noya

/// @complexity Time: O(M(n + m)) for consecutive or geometric evaluation and
/// O(M(n)) for geometric interpolation, where M(n) is convolution time.
/// Space: O(n + m).

/// @complexity Time: O(n) field operations.
/// Space: O(n).

namespace noya {

/// @brief Invert a list of nonzero field elements with one division and O(n)
/// multiplications.
template <class T> std::vector<T> batch_inverse(const std::vector<T> &vs) {
  std::vector<T> pre(vs.size() + 1, T(1));
  for (int idx = 0; idx < int(vs.size()); idx++) {
    assert(vs[idx] != T{});
    pre[idx + 1] = pre[idx] * vs[idx];
  }
  T isf = T(1) / pre.back();
  std::vector<T> res(vs.size());
  for (int idx = int(vs.size()) - 1; idx >= 0; idx--) {
    res[idx] = pre[idx] * isf;
    isf *= vs[idx];
  }
  return res;
}

} // namespace noya

namespace noya {

namespace polynomial_special_points_detail {

template <class Mint> std::vector<Mint> factorial_inverses(int sz) {
  std::vector<Mint> fac(sz, Mint(1));
  for (int i = 1; i < sz; i++) {
    fac[i] = fac[i - 1] * Mint(i);
  }
  std::vector<Mint> ifc(sz, Mint(1));
  if (sz > 0) {
    ifc.back() = Mint(1) / fac.back();
    for (int i = sz - 1; i > 0; i--) {
      ifc[i - 1] = ifc[i] * Mint(i);
    }
  }
  return ifc;
}

template <class Mint>
std::vector<Mint> inverses_allowing_zero(const std::vector<Mint> &vs) {
  std::vector<Mint> non;
  non.reserve(vs.size());
  for (Mint val : vs) {
    if (val != Mint{}) {
      non.push_back(val);
    }
  }
  std::vector<Mint> inv = batch_inverse(non);
  std::vector<Mint> res(vs.size());
  int at = 0;
  for (int i = 0; i < int(vs.size()); i++) {
    if (vs[i] != Mint{}) {
      res[i] = inv[at++];
    }
  }
  return res;
}

} // namespace polynomial_special_points_detail

/// @brief Recover f(c),...,f(c+m-1) from f(0),...,f(n-1). Lagrange weights
/// turn every non-sampled value into one convolution with 1/(c+k-i); a
/// sliding product supplies prod_j(c+k-j). Positions that coincide with an
/// original sample are copied directly.
template <class Mint>
std::vector<Mint> polynomial_shift_samples(const std::vector<Mint> &ys, Mint c,
                                           int m) {
  assert(m >= 0);
  int n = int(ys.size());
  if (m == 0) {
    return {};
  }
  assert(n > 0);
  auto ifc = polynomial_special_points_detail::factorial_inverses<Mint>(n);

  std::vector<Mint> wgt(n);
  for (int i = 0; i < n; i++) {
    wgt[i] = ys[i] * ifc[i] * ifc[n - 1 - i];
    if ((n - 1 - i) & 1) {
      wgt[i] = -wgt[i];
    }
  }
  std::vector<Mint> dif(n + m - 1);
  for (int off = 1 - n; off < m; off++) {
    dif[off + n - 1] = c + Mint(off);
  }
  auto idf = polynomial_special_points_detail::inverses_allowing_zero(dif);
  std::vector<Mint> cnv = atcoder::convolution(wgt, idf);

  std::vector<int> cs(m, -1);
  for (int pos = 0; pos < int(dif.size()); pos++) {
    if (dif[pos] != Mint{}) {
      continue;
    }
    int lo = std::max(0, pos - n + 1);
    int hi = std::min(m - 1, pos);
    for (int k = lo; k <= hi; k++) {
      cs[k] = k + n - 1 - pos;
    }
  }

  int nz = 0;
  Mint nzp = 1;
  for (int i = 0; i < n; i++) {
    Mint val = dif[n - 1 - i];
    if (val == Mint{}) {
      nz++;
    } else {
      nzp *= val;
    }
  }

  std::vector<Mint> res(m);
  for (int k = 0; k < m; k++) {
    if (nz > 0) {
      int sid = cs[k];
      assert(sid >= 0);
      res[k] = ys[sid];
    } else {
      res[k] = nzp * cnv[k + n - 1];
    }
    if (k + 1 == m) {
      break;
    }
    Mint rem = dif[k];
    if (rem == Mint{}) {
      nz--;
    } else {
      nzp *= idf[k];
    }
    Mint add = dif[k + n];
    if (add == Mint{}) {
      nz++;
    } else {
      nzp *= add;
    }
  }
  return res;
}

/// @brief Evaluate f(a r^k) for k=0..m-1. Writing
/// r^(ik)=q(i+k)/(q(i)q(k)), q(t)=r^(t(t-1)/2), changes the Hankel product
/// into one ordinary convolution.
template <class Mint>
std::vector<Mint> polynomial_evaluate_geometric(const std::vector<Mint> &pol,
                                                int m, Mint a, Mint r) {
  assert(m >= 0);
  int n = int(pol.size());
  if (m == 0) {
    return {};
  }
  if (n == 0) {
    return std::vector<Mint>(m);
  }
  if (r == Mint{}) {
    std::vector<Mint> res(m, pol[0]);
    Mint val = 0;
    for (int i = n - 1; i >= 0; i--) {
      val = val * a + pol[i];
    }
    res[0] = val;
    return res;
  }

  std::vector<Mint> q(n + m);
  q[0] = 1;
  Mint pw = 1;
  for (int i = 1; i < int(q.size()); i++) {
    q[i] = q[i - 1] * pw;
    pw *= r;
  }
  std::vector<Mint> iq(q.begin(), q.begin() + std::max(n, m));
  iq = batch_inverse(iq);
  std::vector<Mint> l(n);
  Mint apo = 1;
  for (int i = 0; i < n; i++) {
    l[n - 1 - i] = pol[i] * apo * iq[i];
    apo *= a;
  }
  std::vector<Mint> prd = atcoder::convolution(l, q);
  std::vector<Mint> res(m);
  for (int k = 0; k < m; k++) {
    res[k] = prd[n - 1 + k] * iq[k];
  }
  return res;
}

/// @brief Interpolate from the distinct points a,ar,...,ar^(n-1). Closed
/// forms for the product polynomial and its derivatives give barycentric
/// weights in linear time; a geometric evaluation computes all needed
/// moments, and one final convolution recovers the monomial coefficients.
template <class Mint>
std::vector<Mint> polynomial_interpolate_geometric(const std::vector<Mint> &vs,
                                                   Mint a, Mint r) {
  int n = int(vs.size());
  if (n == 0) {
    return {};
  }
  if (n == 1) {
    return vs;
  }
  assert(a != Mint{});
  assert(r != Mint{});

  std::vector<Mint> omp(n);
  Mint rpo = r;
  for (int i = 1; i <= n; i++) {
    omp[i - 1] = Mint(1) - rpo;
    if (i < n) {
      assert(omp[i - 1] != Mint{});
    }
    rpo *= r;
  }
  std::vector<Mint> nzd(omp.begin(), omp.end() - 1);
  auto iom = batch_inverse(nzd);
  std::vector<Mint> pre(n, Mint(1));
  for (int i = 1; i < n; i++) {
    pre[i] = pre[i - 1] * omp[i - 1];
  }

  std::vector<Mint> ap(n, Mint(1));
  std::vector<Mint> r_p(n, Mint(1));
  for (int i = 1; i < n; i++) {
    ap[i] = ap[i - 1] * a;
    r_p[i] = r_p[i - 1] * r;
  }
  auto iap = batch_inverse(ap);
  std::vector<Mint> wgt(n);
  for (int i = 0; i < n; i++) {
    long long exp = 1LL * i * (i - 1) / 2 + 1LL * i * (n - 1 - i);
    Mint irp = Mint(1);
    if (exp > 0) {
      Mint bas = Mint(1) / r;
      while (exp > 0) {
        if (exp & 1) {
          irp *= bas;
        }
        bas *= bas;
        exp >>= 1;
      }
    }
    Mint idv = iap[n - 1] * irp / (pre[i] * pre[n - 1 - i]);
    if (i & 1) {
      idv = -idv;
    }
    wgt[i] = vs[i] * idv;
  }

  std::vector<Mint> mom = polynomial_evaluate_geometric(wgt, n, Mint(1), r);
  for (int i = 0; i < n; i++) {
    mom[i] *= ap[i];
  }

  std::vector<Mint> qbc(n + 1, Mint(1));
  for (int t = 1; t < n; t++) {
    qbc[t] = qbc[t - 1] * omp[n - t] * iom[t - 1];
  }
  std::vector<Mint> pf(n + 1);
  Mint map = 1;
  Mint qf = 1;
  Mint qs = 1;
  for (int t = 0; t <= n; t++) {
    int cf = n - t;
    pf[cf] = qbc[t] * map * qf;
    map *= -a;
    qf *= qs;
    qs *= r;
  }

  std::vector<Mint> rp(n);
  for (int i = 0; i < n; i++) {
    rp[i] = pf[n - i];
  }
  std::vector<Mint> cnv = atcoder::convolution(rp, mom);
  std::vector<Mint> res(n);
  for (int k = 0; k < n; k++) {
    res[k] = cnv[n - 1 - k];
  }
  return res;
}

/// @brief Multiply a sequence of polynomials by always combining the two
/// currently shortest factors. The Huffman-style merge order keeps the total
/// convolution work O(M(D) log n), where D is the final degree.
template <class Mint>
std::vector<Mint>
polynomial_product_sequence(std::vector<std::vector<Mint>> fs) {
  using item = std::pair<int, int>;
  std::priority_queue<item, std::vector<item>, std::greater<item>> que;
  for (int i = 0; i < int(fs.size()); i++) {
    que.emplace(int(fs[i].size()), i);
  }
  if (que.empty()) {
    return {Mint(1)};
  }
  while (que.size() > 1) {
    int lhs = que.top().second;
    que.pop();
    int b = que.top().second;
    que.pop();
    fs.push_back(atcoder::convolution(fs[lhs], fs[b]));
    que.emplace(int(fs.back().size()), int(fs.size()) - 1);
  }
  return fs[que.top().second];
}

} // namespace noya

namespace noya {

namespace large_factorial_detail {

template <class Mint>
std::vector<Mint> factorial_block_prefix(std::uint64_t mx, int blk) {
  int nb = int(mx / blk);
  std::vector<Mint> pre(nb + 1, Mint(1));
  if (nb == 0) {
    return pre;
  }

  std::vector<std::vector<Mint>> fs;
  fs.reserve(blk);
  for (int i = 1; i <= blk; i++) {
    fs.push_back({Mint(i), Mint(1)});
  }
  std::vector<Mint> bp = polynomial_product_sequence(std::move(fs));
  std::vector<Mint> poi(nb);
  for (int i = 0; i < nb; i++) {
    poi[i] = Mint(std::uint64_t(i) * blk);
  }
  std::vector<Mint> prd = polynomial_multipoint_evaluation(bp, poi);
  for (int i = 0; i < nb; i++) {
    pre[i + 1] = pre[i] * prd[i];
  }
  return pre;
}

} // namespace large_factorial_detail

/// @brief Compute several factorials modulo a fixed prime without a linear
/// table. Split 1..N into blocks of length B about sqrt(N). The product inside
/// one block is the degree-B polynomial P(x)=prod_{i=1}^B(x+i); a product tree
/// constructs P and multipoint evaluation obtains P(0),P(B),P(2B),.... Prefix
/// products answer every full block, followed by at most B direct factors.
template <class Mint>
std::vector<Mint> large_factorials(const std::vector<std::uint64_t> &que) {
  if (que.empty()) {
    return {};
  }
  std::uint64_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint64_t(Mint::mod()));
  int blk = int(std::sqrt(static_cast<long double>(mx + 1)));
  blk = std::max(blk, 1);
  while (std::uint64_t(blk) * blk < mx + 1) {
    blk++;
  }
  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);

  std::vector<Mint> res;
  res.reserve(que.size());
  for (std::uint64_t n : que) {
    std::uint64_t com = n / blk;
    Mint val = pre[com];
    for (std::uint64_t i = com * blk + 1; i <= n; i++) {
      val *= Mint(i);
    }
    res.push_back(val);
  }
  return res;
}

/// @brief Compute a large batch of factorials modulo a fixed prime. Boundary
/// values (kB)! are obtained by evaluating the block-product polynomial
/// prod_{i=1}^B(x+i). For a query n=qB+r, split the remaining product
/// (qB+1)...n into power-of-two suffixes. A suffix of length 2^b is the falling
/// factorial polynomial x(x-1)...(x-2^b+1) evaluated at its current right
/// endpoint. Queries sharing b are evaluated in batches of at most 2^b points,
/// so no query performs a linear tail scan.
template <class Mint>
std::vector<Mint> many_factorials(const std::vector<std::uint32_t> &que) {
  if (que.empty()) {
    return {};
  }
  constexpr int lg = 15;
  constexpr int blk = 1 << lg;
  std::uint32_t mx = *std::max_element(que.begin(), que.end());
  assert(mx < std::uint32_t(Mint::mod()));

  std::vector<Mint> pre =
      large_factorial_detail::factorial_block_prefix<Mint>(mx, blk);
  std::vector<std::vector<std::pair<Mint, int>>> pts(lg);
  std::vector<Mint> res(que.size());
  for (int qry = 0; qry < int(que.size()); qry++) {
    std::uint32_t n = que[qry];
    int quo = int(n / blk);
    int rem = int(n % blk);
    res[qry] = pre[quo];
    std::uint32_t ndp = n;
    for (int bit = 0; bit < lg; bit++) {
      if ((rem >> bit) & 1) {
        pts[bit].emplace_back(Mint(ndp), qry);
        ndp -= std::uint32_t(1) << bit;
      }
    }
    assert(ndp == std::uint32_t(quo * blk));
  }

  for (int bit = 0; bit < lg; bit++) {
    auto &ite = pts[bit];
    if (ite.empty()) {
      continue;
    }
    int len = 1 << bit;
    std::vector<Mint> ff = stirling_first_kind_row<Mint>(len);
    for (int l = 0; l < int(ite.size()); l += len) {
      int r = std::min(l + len, int(ite.size()));
      std::vector<Mint> poi;
      poi.reserve(r - l);
      for (int idx = l; idx < r; idx++) {
        poi.push_back(ite[idx].first);
      }
      std::vector<Mint> vs = polynomial_multipoint_evaluation(ff, poi);
      for (int idx = l; idx < r; idx++) {
        res[ite[idx].second] *= vs[idx - l];
      }
    }
  }
  return res;
}

} // namespace noya