結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー saksak
提出日時 2021-01-07 06:13:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,365 bytes
コンパイル時間 2,735 ms
コンパイル使用メモリ 208,272 KB
実行使用メモリ 22,968 KB
最終ジャッジ日時 2024-04-25 09:33:33
合計ジャッジ時間 19,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> p_ll;

template<class T>
void debug(T itr1, T itr2) { auto now = itr1; while(now<itr2) { cout << *now << " "; now++; } cout << endl; }
#define repr(i,from,to) for (ll i=(ll)from; i<(ll)to; i++)
#define all(vec) vec.begin(), vec.end()
#define rep(i,N) repr(i,0,N)
#define per(i,N) for (int i=(int)N-1; i>=0; i--)

const ll MOD = 998244353;
const ll LLINF = pow(2,61)-1;
const int INF = pow(2,30)-1;

vector<ll> fac;
void c_fac(int x=pow(10,6)+10) { fac.resize(x,true); rep(i,x) fac[i] = i ? (fac[i-1]*i)%MOD : 1; }
ll modpow(ll x, ll p) { ll result = 1, now = 1, pm = x; while (now<=p) { if (p&now) { result = result * pm % MOD; } now*=2; pm = pm*pm % MOD; } return result; }
ll inv(ll a, ll m=MOD) { ll b = m, x = 1, y = 0; while (b!=0) { int d = a/b; a -= b*d; swap(a,b); x -= y*d; swap(x,y); } return (x+m)%m; }
ll nck(ll n, ll k) { return fac[n]*inv(fac[k]*fac[n-k]%MOD)%MOD; }
ll gcd(ll a, ll b) { if (a<b) swap(a,b); return b==0 ? a : gcd(b, a%b); }
ll lcm(ll a, ll b) { return a/gcd(a,b)*b; }

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

struct FastNumberTheoreticTransform {

  ll size, size_x12, root, vsize, base;;
  vector<ll> x1, x2, theta;

  FastNumberTheoreticTransform(ll N=20) { 
    size = 1<<N; root = modpow(3,MOD/size);
    theta.resize(size);
    rep(i,size) theta[i] = i==0 ? 1 : theta[i-1]*root % MOD;
  }

  void set(vector<ll> &v1, vector<ll> &v2) {
    size_x12 = v1.size() + v2.size() - 1;
    vsize = 0; while ((1<<vsize)<size_x12) vsize++;
    base = size>>vsize;
    x1 = v1; x2 = v2;
    x1.resize(1<<vsize); x2.resize(1<<vsize);
  }

  vector<ll> convolution(vector<ll> &x, bool rev, ll depth=0, ll pos=0) {
    if (depth==vsize) return {x[pos]};
    vector<ll> ex = convolution(x,rev,depth+1,pos);
    vector<ll> ox = convolution(x,rev,depth+1,pos+(1<<depth));
    ll N = 1<<(vsize-depth);
    vector<ll> result(N);
    rep(i,N) result[i] = (ex[i%(N/2)] + theta[base*(1<<depth)*i] * ox[i%(N/2)]) % MOD;
    if (rev && depth==0) {
      reverse(result.begin()+1, result.end());
      ll invs = inv(1<<vsize);
      for (auto &x: result) x = x * invs % MOD;
    }
    return result;
  };

  vector<ll> mul(vector<ll> &v1, vector<ll> &v2) {
    set(v1, v2);
    vector<ll> cx1 = convolution(x1, false), cx2 = convolution(x2, false);
    vector<ll> cx12(size); rep(i,size) cx12[i] = cx1[i] * cx2[i] % MOD;
    vector<ll> x12 = convolution(cx12, true);
    x12.resize(size_x12);
    return x12;
  }

};

// ----------------------------------------------------------------------
// ----------------------------------------------------------------------

int main() {
  string S; cin >> S;
  ll N = S.size();
  vector<ll> cnt(26,0); rep(i,N) cnt[S[i]-'a']++;
  sort(all(cnt));
  // debug(all(cnt));

  c_fac();
  vector<ll> invfac(N+1); rep(i,N+1) invfac[i] = inv(fac[i]);
  FastNumberTheoreticTransform FNTT(19);
  vector<ll> v = {1};
  rep(i,26) {
    rep(j,v.size()) v[j] = v[j] * invfac[j] % MOD;
    vector<ll> m(cnt[i]+1); rep(j,cnt[i]+1) m[j] = invfac[j];
    v = FNTT.mul(v,m);
    rep(j,v.size()) v[j] = v[j] * fac[j] % MOD;
  }

  ll result = 0; repr(i,1,v.size()) result = (result+v[i]) % MOD;
  cout << result << endl;
  return 0;
}
0