結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー 👑 emthrmemthrm
提出日時 2020-08-23 21:42:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,014 ms / 3,000 ms
コード長 15,120 bytes
コンパイル時間 2,905 ms
コンパイル使用メモリ 220,020 KB
実行使用メモリ 16,828 KB
最終ジャッジ日時 2023-08-05 22:11:16
合計ジャッジ時間 31,847 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,999 ms
16,712 KB
testcase_01 AC 2,014 ms
16,828 KB
testcase_02 AC 1,989 ms
16,772 KB
testcase_03 AC 179 ms
7,980 KB
testcase_04 AC 220 ms
8,316 KB
testcase_05 AC 207 ms
15,652 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 325 ms
5,520 KB
testcase_09 AC 1,900 ms
16,760 KB
testcase_10 AC 1,082 ms
9,948 KB
testcase_11 AC 1,731 ms
16,256 KB
testcase_12 AC 1,582 ms
15,984 KB
testcase_13 AC 1,352 ms
11,976 KB
testcase_14 AC 816 ms
10,284 KB
testcase_15 AC 1,018 ms
9,892 KB
testcase_16 AC 896 ms
10,332 KB
testcase_17 AC 337 ms
5,304 KB
testcase_18 AC 1,644 ms
16,040 KB
testcase_19 AC 1,599 ms
15,880 KB
testcase_20 AC 1,397 ms
12,084 KB
testcase_21 AC 1,765 ms
16,168 KB
testcase_22 AC 1,289 ms
11,680 KB
testcase_23 AC 2 ms
4,384 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
const int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
  }
} iosetup;

int mod = MOD;
struct ModInt {
  unsigned val;
  ModInt(): val(0) {}
  ModInt(ll x) : val(x >= 0 ? x % mod : x % mod + mod) {}
  ModInt pow(ll exponent) const {
    ModInt tmp = *this, res = 1;
    while (exponent > 0) {
      if (exponent & 1) res *= tmp;
      tmp *= tmp;
      exponent >>= 1;
    }
    return res;
  }
  ModInt &operator+=(const ModInt &x) { if((val += x.val) >= mod) val -= mod; return *this; }
  ModInt &operator-=(const ModInt &x) { if((val += mod - x.val) >= mod) val -= mod; return *this; }
  ModInt &operator*=(const ModInt &x) { val = static_cast<unsigned long long>(val) * x.val % mod; return *this; }
  ModInt &operator/=(const ModInt &x) {
    // assert(__gcd(static_cast<int>(x.val), mod) == 1);
    unsigned a = x.val, b = mod; int u = 1, v = 0;
    while (b) {
      unsigned tmp = a / b;
      swap(a -= tmp * b, b);
      swap(u -= tmp * v, v);
    }
    return *this *= u;
  }
  bool operator==(const ModInt &x) const { return val == x.val; }
  bool operator!=(const ModInt &x) const { return val != x.val; }
  bool operator<(const ModInt &x) const { return val < x.val; }
  bool operator<=(const ModInt &x) const { return val <= x.val; }
  bool operator>(const ModInt &x) const { return val > x.val; }
  bool operator>=(const ModInt &x) const { return val >= x.val; }
  ModInt &operator++() { if (++val == mod) val = 0; return *this; }
  ModInt operator++(int) { ModInt res = *this; ++*this; return res; }
  ModInt &operator--() { val = (val == 0 ? mod : val) - 1; return *this; }
  ModInt operator--(int) { ModInt res = *this; --*this; return res; }
  ModInt operator+() const { return *this; }
  ModInt operator-() const { return ModInt(val ? mod - val : 0); }
  ModInt operator+(const ModInt &x) const { return ModInt(*this) += x; }
  ModInt operator-(const ModInt &x) const { return ModInt(*this) -= x; }
  ModInt operator*(const ModInt &x) const { return ModInt(*this) *= x; }
  ModInt operator/(const ModInt &x) const { return ModInt(*this) /= x; }
  friend ostream &operator<<(ostream &os, const ModInt &x) { return os << x.val; }
  friend istream &operator>>(istream &is, ModInt &x) { ll val; is >> val; x = ModInt(val); return is; }
};
ModInt abs(const ModInt &x) { return x; }
struct Combinatorics {
  int val; // "val!" and "mod" must be disjoint.
  vector<ModInt> fact, fact_inv, inv;
  Combinatorics(int val = 10000000) : val(val), fact(val + 1), fact_inv(val + 1), inv(val + 1) {
    fact[0] = 1;
    FOR(i, 1, val + 1) fact[i] = fact[i - 1] * i;
    fact_inv[val] = ModInt(1) / fact[val];
    for (int i = val; i > 0; --i) fact_inv[i - 1] = fact_inv[i] * i;
    FOR(i, 1, val + 1) inv[i] = fact[i - 1] * fact_inv[i];
  }
  ModInt nCk(int n, int k) const {
    if (n < 0 || n < k || k < 0) return ModInt(0);
    // assert(n <= val && k <= val);
    return fact[n] * fact_inv[k] * fact_inv[n - k];
  }
  ModInt nPk(int n, int k) const {
    if (n < 0 || n < k || k < 0) return ModInt(0);
    // assert(n <= val);
    return fact[n] * fact_inv[n - k];
  }
  ModInt nHk(int n, int k) const {
    if (n < 0 || k < 0) return ModInt(0);
    return k == 0 ? ModInt(1) : nCk(n + k - 1, k);
  }
};

struct NTT {
  NTT(int mod_) {
    for (int i = 0; ; ++i) {
      assert(i < 23);
      if (primes[i][0] == mod_) {
        mod = mod_;
        n_max = 1 << primes[i][2];
        root = ModInt(primes[i][1]).pow((mod - 1) >> primes[i][2]);
        break;
      }
    }
  }

  void sub_dft(vector<ModInt> &a) {
    int n = a.size();
    assert(__builtin_popcount(n) == 1);
    calc(n);
    int shift = __builtin_ctz(butterfly.size()) - __builtin_ctz(n);
    REP(i, n) {
      int j = butterfly[i] >> shift;
      if (i < j) swap(a[i], a[j]);
    }
    for (int block = 1; block < n; block <<= 1) {
      int den = __builtin_ctz(block);
      for (int i = 0; i < n; i += (block << 1)) REP(j, block) {
        ModInt tmp = a[i + j + block] * omega[den][j];
        a[i + j + block] = a[i + j] - tmp;
        a[i + j] += tmp;
      }
    }
  }

  template <typename T>
  vector<ModInt> dft(const vector<T> &a) {
    int n = a.size(), lg = 1;
    while ((1 << lg) < n) ++lg;
    vector<ModInt> A(1 << lg, 0);
    REP(i, n) A[i] = a[i];
    sub_dft(A);
    return A;
  }

  void idft(vector<ModInt> &a) {
    int n = a.size();
    assert(__builtin_popcount(n) == 1);
    sub_dft(a);
    reverse(a.begin() + 1, a.end());
    ModInt inv_n = ModInt(1) / n;
    REP(i, n) a[i] *= inv_n;
  }

  template <typename T>
  vector<ModInt> convolution(const vector<T> &a, const vector<T> &b) {
    int a_sz = a.size(), b_sz = b.size(), sz = a_sz + b_sz - 1, lg = 1;
    while ((1 << lg) < sz) ++lg;
    int n = 1 << lg;
    vector<ModInt> A(n, 0), B(n, 0);
    REP(i, a_sz) A[i] = a[i];
    REP(i, b_sz) B[i] = b[i];
    sub_dft(A);
    sub_dft(B);
    REP(i, n) A[i] *= B[i];
    idft(A);
    A.resize(sz);
    return A;
  }

private:
  const int primes[23][3] = {
    {16957441, 329, 14},
    {17006593, 26, 15},
    {19529729, 770, 17},
    {167772161, 3, 25},
    {469762049, 3, 26},
    {645922817, 3, 23},
    {897581057, 3, 23},
    {924844033, 5, 21},
    {935329793, 3, 22},
    {943718401, 7, 22},
    {950009857, 7, 21},
    {962592769, 7, 21},
    {975175681, 17, 21},
    {976224257, 3, 20},
    {985661441, 3, 22},
    {998244353, 3, 23},
    {1004535809, 3, 21},
    {1007681537, 3, 20},
    {1012924417, 5, 21},
    {1045430273, 3, 20},
    {1051721729, 6, 20},
    {1053818881, 7, 20},
    {1224736769, 3, 24}
  };

  int n_max;
  ModInt root;
  vector<int> butterfly{0};
  vector<vector<ModInt>> omega{{1}};

  void calc(int n) {
    int prev_n = butterfly.size();
    if (n <= prev_n) return;
    assert(n <= n_max);
    butterfly.resize(n);
    int prev_lg = omega.size(), lg = __builtin_ctz(n);
    FOR(i, 1, prev_n) butterfly[i] <<= lg - prev_lg;
    FOR(i, prev_n, n) butterfly[i] = (butterfly[i >> 1] >> 1) | ((i & 1) << (lg - 1));
    omega.resize(lg);
    FOR(i, prev_lg, lg) {
      omega[i].resize(1 << i);
      ModInt tmp = root.pow((mod - 1) / (1 << (i + 1)));
      REP(j, 1 << (i - 1)) {
        omega[i][j << 1] = omega[i - 1][j];
        omega[i][(j << 1) + 1] = omega[i - 1][j] * tmp;
      }
    }
  }
};

template <typename T>
function<vector<T>(const vector<T>&, const vector<T>&)> mul = [](const vector<T> &a, const vector<T> &b) {
  int n = a.size(), m = b.size();
  vector<T> res(n + m - 1, 0);
  REP(i, n) REP(j, m) res[i + j] += a[i] * b[j];
  return res;
};

template <typename T>
function<bool(const T&, T&)> sqr = [](const T &a, T &res) {
  return false;
};

template <typename T>
struct FPS {
  vector<T> co;

  FPS(int deg = 0) : co(deg + 1, 0) {}
  FPS(const vector<T> &co) : co(co) {}
  FPS(initializer_list<T> init) : co(init.begin(), init.end()) {}
  template <typename InputIter> FPS(InputIter first, InputIter last) : co(first, last) {}

  inline const T &operator[](int term) const { return co[term]; }
  inline T &operator[](int term) { return co[term]; }

  void resize(int deg) { co.resize(deg + 1, 0); }

  void shrink() { while (co.size() > 1 && co.back() == 0) co.pop_back(); }

  int degree() const { return static_cast<int>(co.size()) - 1; }

  FPS &operator=(const vector<T> &new_co) {
    co.resize(new_co.size());
    copy(ALL(new_co), co.begin());
    return *this;
  }

  FPS &operator=(const FPS &x) {
    co.resize(x.co.size());
    copy(ALL(x.co), co.begin());
    return *this;
  }

  FPS &operator+=(const FPS &x) {
    int n = x.co.size();
    if (n > co.size()) resize(n - 1);
    REP(i, n) co[i] += x.co[i];
    return *this;
  }

  FPS &operator-=(const FPS &x) {
    int n = x.co.size();
    if (n > co.size()) resize(n - 1);
    REP(i, n) co[i] -= x.co[i];
    return *this;
  }

  FPS &operator*=(T x) {
    for (T &e : co) e *= x;
    return *this;
  }

  FPS &operator*=(const FPS &x) { return *this = mul<T>(co, x.co); }

  FPS &operator/=(T x) {
    assert(x != 0);
    T inv_x = T(1) / x;
    for (T &e : co) e *= inv_x;
    return *this;
  }

  FPS &operator/=(const FPS &x) {
    int sz = x.co.size();
    if (sz > co.size()) return *this = FPS();
    int n = co.size() - sz + 1;
    FPS a(co.rbegin(), co.rbegin() + n), b(x.co.rbegin(), x.co.rbegin() + min(sz, n));
    b = b.inv(n - 1);
    a *= b;
    return *this = FPS(a.co.rend() - n, a.co.rend());
  }

  FPS &operator%=(const FPS &x) {
    *this -= *this / x * x;
    co.resize(static_cast<int>(x.co.size()) - 1);
    if (co.empty()) co = {0};
    return *this;
  }

  FPS &operator<<=(int n) {
    co.insert(co.begin(), n, 0);
    return *this;
  }

  FPS &operator>>=(int n) {
    if (co.size() < n) return *this = FPS();
    co.erase(co.begin(), co.begin() + n);
    return *this;
  }

  bool operator==(const FPS &x) const {
    FPS a(*this), b(x);
    a.shrink(); b.shrink();
    int n = a.co.size();
    if (n != b.co.size()) return false;
    REP(i, n) if (a.co[i] != b.co[i]) return false;
    return true;
  }

  bool operator!=(const FPS &x) const { return !(*this == x); }

  FPS operator+() const { return *this; }

  FPS operator-() const {
    FPS res(*this);
    for (T &e : res.co) e = -e;
    return res;
  }

  FPS operator+(const FPS &x) const { return FPS(*this) += x; }

  FPS operator-(const FPS &x) const { return FPS(*this) -= x; }

  FPS operator*(T x) const { return FPS(*this) *= x; }

  FPS operator*(const FPS &x) const { return FPS(*this) *= x; }

  FPS operator/(T x) const { return FPS(*this) /= x; }

  FPS operator/(const FPS &x) const { return FPS(*this) /= x; }

  FPS operator%(const FPS &x) const { return FPS(*this) %= x; }

  FPS operator<<(int n) const { return FPS(*this) <<= n; }

  FPS operator>>(int n) const { return FPS(*this) >>= n; }

  T horner(T val) const {
    T res = 0;
    for (int i = static_cast<int>(co.size()) - 1; i >= 0; --i) (res *= val) += co[i];
    return res;
  }

  FPS differential() const {
    int n = co.size();
    assert(n >= 1);
    FPS res(n - 1);
    FOR(i, 1, n) res.co[i - 1] = co[i] * i;
    return res;
  }

  FPS integral() const {
    int n = co.size();
    FPS res(n + 1);
    REP(i, n) res[i + 1] = co[i] / (i + 1);
    return res;
  }

  FPS exp(int deg = -1) const {
    assert(co[0] == 0);
    int n = co.size();
    if (deg == -1) deg = n - 1;
    FPS one{1}, res = one;
    for (int i = 1; i <= deg; i <<= 1) {
      res *= FPS(co.begin(), co.begin() + min(n, i << 1)) - res.log((i << 1) - 1) + one;
      res.co.resize(i << 1);
    }
    res.co.resize(deg + 1);
    return res;
  }

  FPS inv(int deg = -1) const {
    assert(co[0] != 0);
    int n = co.size();
    if (deg == -1) deg = n - 1;
    FPS res{T(1) / co[0]};
    for (int i = 1; i <= deg; i <<= 1) {
      res = res + res - res * res * FPS(co.begin(), co.begin() + min(n, i << 1));
      res.co.resize(i << 1);
    }
    res.co.resize(deg + 1);
    return res;
  }

  FPS log(int deg = -1) const {
    assert(co[0] == 1);
    if (deg == -1) deg = static_cast<int>(co.size()) - 1;
    FPS integrand = differential() * inv(deg - 1);
    integrand.co.resize(deg);
    return integrand.integral();
  }

  FPS pow(ll exponent, int deg = -1) const {
    int n = co.size();
    if (deg == -1) deg = n - 1;
    REP(i, n) {
      if (co[i] != 0) {
        ll shift = exponent * i;
        if (shift > deg) break;
        T tmp = 1, base = co[i];
        ll e = exponent;
        while (e > 0) {
          if (e & 1) tmp *= base;
          base *= base;
          e >>= 1;
        }
        return ((((*this >> i) * (T(1) / co[i])).log(deg - shift) * T(exponent)).exp(deg - shift) * tmp) << shift;
      }
    }
    return FPS(deg);
  }

  FPS mod_pow(ll exponent, const FPS &md) const {
    FPS inv_rev_md = FPS(md.co.rbegin(), md.co.rend()).inv();
    int deg_of_md = md.co.size();
    function<void(FPS&, const FPS&)> mod_mul = [&](FPS &multiplicand, const FPS &multiplier) {
      multiplicand *= multiplier;
      if (deg_of_md <= multiplicand.co.size()) {
        int n = multiplicand.co.size() - deg_of_md + 1;
        FPS quotient = FPS(multiplicand.co.rbegin(), multiplicand.co.rbegin() + n) * FPS(inv_rev_md.co.begin(), inv_rev_md.co.begin() + min(static_cast<int>(inv_rev_md.co.size()), n));
        multiplicand -= FPS(quotient.co.rend() - n, quotient.co.rend()) * md;
      }
      multiplicand.co.resize(deg_of_md - 1);
      if (multiplicand.co.empty()) multiplicand.co = {0};
    };
    FPS res{1}, base = *this;
    mod_mul(base, res);
    while (exponent > 0) {
      if (exponent & 1) mod_mul(res, base);
      mod_mul(base, base);
      exponent >>= 1;
    }
    return res;
  }

  FPS sqrt(int deg = -1) const {
    int n = co.size();
    if (deg == -1) deg = n - 1;
    if (co[0] == 0) {
      FOR(i, 1, n) {
        if (co[i] == 0) continue;
        if (i & 1) return FPS(-1);
        int shift = i >> 1;
        if (deg < shift) break;
        FPS res = (*this >> i).sqrt(deg - shift);
        if (res.co.empty()) return FPS(-1);
        res <<= shift;
        res.resize(deg);
        return res;
      }
      return FPS(deg);
    }
    T s;
    if (!sqr<T>(co[0], s)) return FPS(-1);
    FPS res{s};
    T half = T(1) / 2;
    for (int i = 1; i <= deg; i <<= 1) {
      (res += FPS(co.begin(), co.begin() + min(n, i << 1)) * res.inv((i << 1) - 1)) *= half;
    }
    res.resize(deg);
    return res;
  }

  FPS translate(T c) const {
    int n = co.size();
    vector<T> fact(n, 1), inv_fact(n, 1);
    FOR(i, 1, n) fact[i] = fact[i - 1] * i;
    inv_fact[n - 1] = T(1) / fact[n - 1];
    for (int i = n - 1; i > 0; --i) inv_fact[i - 1] = inv_fact[i] * i;
    vector<T> g(n), ex(n);
    REP(i, n) g[n - 1 - i] = co[i] * fact[i];
    T pow_c = 1;
    REP(i, n) {
      ex[i] = pow_c * inv_fact[i];
      pow_c *= c;
    }
    vector<T> conv = mul<T>(g, ex);
    FPS res(n - 1);
    REP(i, n) res[i] = conv[n - 1 - i] * inv_fact[i];
    return res;
  }
};

int main() {
  NTT ntt(MOD);
  mul<ModInt> = [&](const vector<ModInt> &a, const vector<ModInt> &b) {
    return ntt.convolution(a, b);
  };
  string s; cin >> s;
  int n = s.length();
  Combinatorics com(n);
  vector cnt(26, 0);
  for (char c : s) ++cnt[c - 'a'];
  sort(ALL(cnt));
  FPS<ModInt> f({1});
  REP(i, 26) {
    FPS<ModInt> g(cnt[i]);
    REP(j, cnt[i] + 1) g[j] = com.fact_inv[j];
    f *= g;
  }
  ModInt ans = 0;
  FOR(i, 1, n + 1) ans += f[i] * com.fact[i];
  cout << ans << '\n';
  return 0;
}
0