結果

問題 No.2349 Power!! (Hard)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-06-10 02:37:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,047 ms / 7,000 ms
コード長 12,526 bytes
コンパイル時間 1,456 ms
コンパイル使用メモリ 117,640 KB
実行使用メモリ 11,240 KB
最終ジャッジ日時 2023-08-30 16:40:07
合計ジャッジ時間 13,251 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,236 KB
testcase_01 AC 863 ms
10,728 KB
testcase_02 AC 870 ms
11,140 KB
testcase_03 AC 861 ms
11,168 KB
testcase_04 AC 275 ms
11,160 KB
testcase_05 AC 612 ms
10,580 KB
testcase_06 AC 1,037 ms
11,172 KB
testcase_07 AC 1,047 ms
11,140 KB
testcase_08 AC 1,047 ms
11,236 KB
testcase_09 AC 1,040 ms
11,236 KB
testcase_10 AC 1,033 ms
11,160 KB
testcase_11 AC 1,026 ms
11,240 KB
testcase_12 AC 1,021 ms
11,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }

////////////////////////////////////////////////////////////////////////////////
template <unsigned M_> struct ModInt {
  static constexpr unsigned M = M_;
  unsigned x;
  constexpr ModInt() : x(0U) {}
  constexpr ModInt(unsigned x_) : x(x_ % M) {}
  constexpr ModInt(unsigned long long x_) : x(x_ % M) {}
  constexpr ModInt(int x_) : x(((x_ %= static_cast<int>(M)) < 0) ? (x_ + static_cast<int>(M)) : x_) {}
  constexpr ModInt(long long x_) : x(((x_ %= static_cast<long long>(M)) < 0) ? (x_ + static_cast<long long>(M)) : x_) {}
  ModInt &operator+=(const ModInt &a) { x = ((x += a.x) >= M) ? (x - M) : x; return *this; }
  ModInt &operator-=(const ModInt &a) { x = ((x -= a.x) >= M) ? (x + M) : x; return *this; }
  ModInt &operator*=(const ModInt &a) { x = (static_cast<unsigned long long>(x) * a.x) % M; return *this; }
  ModInt &operator/=(const ModInt &a) { return (*this *= a.inv()); }
  ModInt pow(long long e) const {
    if (e < 0) return inv().pow(-e);
    ModInt a = *this, b = 1U; for (; e; e >>= 1) { if (e & 1) b *= a; a *= a; } return b;
  }
  ModInt inv() const {
    unsigned a = M, b = x; int y = 0, z = 1;
    for (; b; ) { const unsigned q = a / b; const unsigned c = a - q * b; a = b; b = c; const int w = y - static_cast<int>(q) * z; y = z; z = w; }
    assert(a == 1U); return ModInt(y);
  }
  ModInt operator+() const { return *this; }
  ModInt operator-() const { ModInt a; a.x = x ? (M - x) : 0U; return a; }
  ModInt operator+(const ModInt &a) const { return (ModInt(*this) += a); }
  ModInt operator-(const ModInt &a) const { return (ModInt(*this) -= a); }
  ModInt operator*(const ModInt &a) const { return (ModInt(*this) *= a); }
  ModInt operator/(const ModInt &a) const { return (ModInt(*this) /= a); }
  template <class T> friend ModInt operator+(T a, const ModInt &b) { return (ModInt(a) += b); }
  template <class T> friend ModInt operator-(T a, const ModInt &b) { return (ModInt(a) -= b); }
  template <class T> friend ModInt operator*(T a, const ModInt &b) { return (ModInt(a) *= b); }
  template <class T> friend ModInt operator/(T a, const ModInt &b) { return (ModInt(a) /= b); }
  explicit operator bool() const { return x; }
  bool operator==(const ModInt &a) const { return (x == a.x); }
  bool operator!=(const ModInt &a) const { return (x != a.x); }
  friend std::ostream &operator<<(std::ostream &os, const ModInt &a) { return os << a.x; }
};
////////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////////
constexpr unsigned MO = 998244353U;
constexpr unsigned MO2 = 2U * MO;
constexpr int FFT_MAX = 23;
using Mint = ModInt<MO>;
constexpr Mint FFT_ROOTS[FFT_MAX + 1] = {1U, 998244352U, 911660635U, 372528824U, 929031873U, 452798380U, 922799308U, 781712469U, 476477967U, 166035806U, 258648936U, 584193783U, 63912897U, 350007156U, 666702199U, 968855178U, 629671588U, 24514907U, 996173970U, 363395222U, 565042129U, 733596141U, 267099868U, 15311432U};
constexpr Mint INV_FFT_ROOTS[FFT_MAX + 1] = {1U, 998244352U, 86583718U, 509520358U, 337190230U, 87557064U, 609441965U, 135236158U, 304459705U, 685443576U, 381598368U, 335559352U, 129292727U, 358024708U, 814576206U, 708402881U, 283043518U, 3707709U, 121392023U, 704923114U, 950391366U, 428961804U, 382752275U, 469870224U};
constexpr Mint FFT_RATIOS[FFT_MAX] = {911660635U, 509520358U, 369330050U, 332049552U, 983190778U, 123842337U, 238493703U, 975955924U, 603855026U, 856644456U, 131300601U, 842657263U, 730768835U, 942482514U, 806263778U, 151565301U, 510815449U, 503497456U, 743006876U, 741047443U, 56250497U, 867605899U};
constexpr Mint INV_FFT_RATIOS[FFT_MAX] = {86583718U, 372528824U, 373294451U, 645684063U, 112220581U, 692852209U, 155456985U, 797128860U, 90816748U, 860285882U, 927414960U, 354738543U, 109331171U, 293255632U, 535113200U, 308540755U, 121186627U, 608385704U, 438932459U, 359477183U, 824071951U, 103369235U};

// as[rev(i)] <- \sum_j \zeta^(ij) as[j]
void fft(Mint *as, int n) {
  assert(!(n & (n - 1))); assert(1 <= n); assert(n <= 1 << FFT_MAX);
  int m = n;
  if (m >>= 1) {
    for (int i = 0; i < m; ++i) {
      const unsigned x = as[i + m].x;  // < MO
      as[i + m].x = as[i].x + MO - x;  // < 2 MO
      as[i].x += x;  // < 2 MO
    }
  }
  if (m >>= 1) {
    Mint prod = 1U;
    for (int h = 0, i0 = 0; i0 < n; i0 += (m << 1)) {
      for (int i = i0; i < i0 + m; ++i) {
        const unsigned x = (prod * as[i + m]).x;  // < MO
        as[i + m].x = as[i].x + MO - x;  // < 3 MO
        as[i].x += x;  // < 3 MO
      }
      prod *= FFT_RATIOS[__builtin_ctz(++h)];
    }
  }
  for (; m; ) {
    if (m >>= 1) {
      Mint prod = 1U;
      for (int h = 0, i0 = 0; i0 < n; i0 += (m << 1)) {
        for (int i = i0; i < i0 + m; ++i) {
          const unsigned x = (prod * as[i + m]).x;  // < MO
          as[i + m].x = as[i].x + MO - x;  // < 4 MO
          as[i].x += x;  // < 4 MO
        }
        prod *= FFT_RATIOS[__builtin_ctz(++h)];
      }
    }
    if (m >>= 1) {
      Mint prod = 1U;
      for (int h = 0, i0 = 0; i0 < n; i0 += (m << 1)) {
        for (int i = i0; i < i0 + m; ++i) {
          const unsigned x = (prod * as[i + m]).x;  // < MO
          as[i].x = (as[i].x >= MO2) ? (as[i].x - MO2) : as[i].x;  // < 2 MO
          as[i + m].x = as[i].x + MO - x;  // < 3 MO
          as[i].x += x;  // < 3 MO
        }
        prod *= FFT_RATIOS[__builtin_ctz(++h)];
      }
    }
  }
  for (int i = 0; i < n; ++i) {
    as[i].x = (as[i].x >= MO2) ? (as[i].x - MO2) : as[i].x;  // < 2 MO
    as[i].x = (as[i].x >= MO) ? (as[i].x - MO) : as[i].x;  // < MO
  }
}

// as[i] <- (1/n) \sum_j \zeta^(-ij) as[rev(j)]
void invFft(Mint *as, int n) {
  assert(!(n & (n - 1))); assert(1 <= n); assert(n <= 1 << FFT_MAX);
  int m = 1;
  if (m < n >> 1) {
    Mint prod = 1U;
    for (int h = 0, i0 = 0; i0 < n; i0 += (m << 1)) {
      for (int i = i0; i < i0 + m; ++i) {
        const unsigned long long y = as[i].x + MO - as[i + m].x;  // < 2 MO
        as[i].x += as[i + m].x;  // < 2 MO
        as[i + m].x = (prod.x * y) % MO;  // < MO
      }
      prod *= INV_FFT_RATIOS[__builtin_ctz(++h)];
    }
    m <<= 1;
  }
  for (; m < n >> 1; m <<= 1) {
    Mint prod = 1U;
    for (int h = 0, i0 = 0; i0 < n; i0 += (m << 1)) {
      for (int i = i0; i < i0 + (m >> 1); ++i) {
        const unsigned long long y = as[i].x + MO2 - as[i + m].x;  // < 4 MO
        as[i].x += as[i + m].x;  // < 4 MO
        as[i].x = (as[i].x >= MO2) ? (as[i].x - MO2) : as[i].x;  // < 2 MO
        as[i + m].x = (prod.x * y) % MO;  // < MO
      }
      for (int i = i0 + (m >> 1); i < i0 + m; ++i) {
        const unsigned long long y = as[i].x + MO - as[i + m].x;  // < 2 MO
        as[i].x += as[i + m].x;  // < 2 MO
        as[i + m].x = (prod.x * y) % MO;  // < MO
      }
      prod *= INV_FFT_RATIOS[__builtin_ctz(++h)];
    }
  }
  if (m < n) {
    for (int i = 0; i < m; ++i) {
      const unsigned y = as[i].x + MO2 - as[i + m].x;  // < 4 MO
      as[i].x += as[i + m].x;  // < 4 MO
      as[i + m].x = y;  // < 4 MO
    }
  }
  const Mint invN = Mint(n).inv();
  for (int i = 0; i < n; ++i) {
    as[i] *= invN;
  }
}

void fft(vector<Mint> &as) {
  fft(as.data(), as.size());
}
void invFft(vector<Mint> &as) {
  invFft(as.data(), as.size());
}

vector<Mint> convolve(vector<Mint> as, vector<Mint> bs) {
  if (as.empty() || bs.empty()) return {};
  const int len = as.size() + bs.size() - 1;
  int n = 1;
  for (; n < len; n <<= 1) {}
  as.resize(n); fft(as);
  bs.resize(n); fft(bs);
  for (int i = 0; i < n; ++i) as[i] *= bs[i];
  invFft(as);
  as.resize(len);
  return as;
}
vector<Mint> square(vector<Mint> as) {
  if (as.empty()) return {};
  const int len = as.size() + as.size() - 1;
  int n = 1;
  for (; n < len; n <<= 1) {}
  as.resize(n); fft(as);
  for (int i = 0; i < n; ++i) as[i] *= as[i];
  invFft(as);
  as.resize(len);
  return as;
}
////////////////////////////////////////////////////////////////////////////////

template <unsigned M_> struct ModInv {
  static constexpr unsigned M = M_;
  int k, k2, l;
  vector<int> qs;
  vector<ModInt<M>> inv;
  ModInv() {
    k = cbrt(M);
    k2 = k * k;
    l = M / k;
    qs.assign(k2 + 1, 0);
    for (int q = k; q >= 1; --q) for (int p = 0; p <= q; ++p) qs[k2 * p / q] = q;
    for (int i = 1; i <= k2; ++i) if (!qs[i]) qs[i] = qs[i - 1];
    inv.assign(l + 1, 0);
    inv[1] = 1;
    for (int i = 2; i <= l; ++i) inv[i] = -((M / i) * inv[M % i]);
  }
  ModInt<M> operator()(const ModInt<M> &a) const {
    const double r = static_cast<double>(k2) * a.x / M;
    const int q0 = qs[r];
    const ModInt<M> b0 = a * q0;
    if (b0.x <= static_cast<unsigned>(l)) return inv[b0.x] * q0;
    const int q1 = qs[k2 - r];
    return -inv[(-a * q1).x] * q1;
  }
};

constexpr int L = 119 << 12;
constexpr int M = 1 << 11;
static_assert(L * M == MO - 1);
static_assert(L % M == 0);
/*
  (Li + Mj + k)^2
  == 2Lik + M^2j^2 + 2Mjk + k^2  (mod MO-1)
  = (M^2j^2 - 2M binom(j,2)) + (2Lik - 2M binom(k,2) + k^2) + (2M binom(j+k,2))
*/

int main() {
  const ModInv<MO> INV;
  
  for (int numCases; ~scanf("%d", &numCases); ) { for (int caseId = 1; caseId <= numCases; ++caseId) {
    Mint A;
    int N;
    scanf("%u%d", &A.x, &N);
    
    Mint ans = 0;
    
    const int N2 = N / L;
    const int N1 = N % L / M;
    const int N0 = N % M;
cerr<<"N2 = "<<N2<<", N1 = "<<N1<<", N0 = "<<N0<<endl;
    
    // [0, N2) * [0, L/M) * [0, M)
    vector<Mint> fs(L/M);
    {
      {
        Mint c2 = 1, c1 = A.pow(M*M), c0 = A.pow(2*M*M - 2*M);
        for (int j = 0; j < L/M; ++j) {
          fs[j] = c2; c2 *= c1; c1 *= c0;
// assert(fs[j]==Mint(A).pow((Int)M*M*j*j - 2LL*M*j*(j-1)/2));
        }
      }
      vector<Mint> gs(M);
      {
        Mint c2 = 1, c1 = A, c0 = A.pow(-2*M + 2);
        const Mint a = A.pow(2*L), aN2 = A.pow(2*L*N2);
        Mint aa = 1, aaN2 = 1;
        for (int k = 0; k < M; ++k) {
          gs[k] = c2; c2 *= c1; c1 *= c0;
          // \sum[0<=i<N2] (A^(2Lk))^i
          gs[k] *= ((aa == 1) ? N2 : ((1 - aaN2) * INV(1 - aa)));
          aa *= a;
          aaN2 *= aN2;
// assert(gs[k]==
// ((A.pow(1LL*2*L*k)==1) ? N2 : ((1-A.pow(1LL*2*L*k*N2))/(1-A.pow(1LL*2*L*k))))
// * A.pow(-2LL*M*k*(k-1)/2 + 1LL*k*k));
        }
      }
      const auto hs = convolve(fs, gs);
      {
        Mint c2 = 1, c1 = 1, c0 = A.pow(2*M);
        for (int l = 0; l < (int)hs.size(); ++l) {
          ans += hs[l] * c2; c2 *= c1; c1 *= c0;
        }
      }
    }
    
    // {N2} * [0, N1) * [0, M)
    fs.resize(N1);
    {
      vector<Mint> gs(M);
      {
        Mint c2 = 1, c1 = A, c0 = A.pow(-2*M + 2);
        const Mint a = A.pow(2*L*N2);
        Mint aa = 1;
        for (int k = 0; k < M; ++k) {
          gs[k] = c2; c2 *= c1; c1 *= c0;
          // (A^(2Lk))^N2
          gs[k] *= aa;
          aa *= a;
        }
      }
      const auto hs = convolve(fs, gs);
      {
        Mint c2 = 1, c1 = 1, c0 = A.pow(2*M);
        for (int l = 0; l < (int)hs.size(); ++l) {
          ans += hs[l] * c2; c2 *= c1; c1 *= c0;
        }
      }
    }
    
    // {N2} * {N1} * [0, N0)
    {
      const Int h0 = N2 * L + N1 * M;
      Mint c2 = A.pow(h0*h0), c1 = A.pow(2*h0+1), c0 = A.pow(2);
      for (int k = 0; k < N0; ++k) {
        ans += c2; c2 *= c1; c1 *= c0;
      }
    }
    
    printf("%u\n", ans.x);
  }
#ifndef LOCAL
  break;
#endif
  }
  return 0;
}
0