結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー carrot46carrot46
提出日時 2020-08-25 14:04:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,273 ms / 3,000 ms
コード長 4,807 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 178,312 KB
実行使用メモリ 35,652 KB
最終ジャッジ日時 2024-04-24 04:31:23
合計ジャッジ時間 33,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,257 ms
35,536 KB
testcase_01 AC 2,271 ms
35,404 KB
testcase_02 AC 2,273 ms
35,532 KB
testcase_03 AC 218 ms
15,256 KB
testcase_04 AC 255 ms
15,032 KB
testcase_05 AC 294 ms
33,036 KB
testcase_06 AC 48 ms
7,936 KB
testcase_07 AC 49 ms
7,936 KB
testcase_08 AC 338 ms
11,412 KB
testcase_09 AC 2,177 ms
35,652 KB
testcase_10 AC 1,127 ms
21,580 KB
testcase_11 AC 1,951 ms
35,616 KB
testcase_12 AC 1,782 ms
33,256 KB
testcase_13 AC 1,458 ms
21,676 KB
testcase_14 AC 849 ms
21,660 KB
testcase_15 AC 1,066 ms
21,704 KB
testcase_16 AC 936 ms
21,672 KB
testcase_17 AC 352 ms
11,636 KB
testcase_18 AC 1,808 ms
33,428 KB
testcase_19 AC 1,744 ms
33,424 KB
testcase_20 AC 1,466 ms
21,680 KB
testcase_21 AC 1,932 ms
35,472 KB
testcase_22 AC 1,398 ms
21,652 KB
testcase_23 AC 48 ms
8,064 KB
testcase_24 AC 48 ms
7,936 KB
testcase_25 AC 49 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <chrono>
//#pragma GCC optimize("Ofast")
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;

ll N,M,H,W,Q,K,A,B;
string S;
typedef pair<ll, ll> P;
const ll INF = (1LL<<58);

template <unsigned long long mod > class modint{
public:
    ll x;

    constexpr modint(){x = 0;}
    constexpr modint(ll _x) : x((_x < 0 ? ((_x += (LLONG_MAX / mod) * mod) < 0 ? _x + (LLONG_MAX / mod) * mod : _x) : _x)%mod){}
    constexpr modint operator-(){
        return x == 0 ? 0 : mod - x;
    }
    constexpr modint& operator+=(const modint& a){
        if((x += a.x) >= mod) x -= mod;
        return *this;
    }
    constexpr modint operator+(const modint& a) const{
        return modint(x) += a;
    }
    constexpr modint& operator-=(const modint& a){
        if((x -= a.x) < 0) x += mod;
        return *this;
    }
    constexpr modint operator-(const modint& a) const{
        return modint(x) -= a;
    }
    constexpr modint& operator*=(const modint& a){
        (x *= a.x)%=mod;
        return *this;
    }
    constexpr modint operator*(const modint& a) const{
        return modint(x) *= a;
    }
    constexpr modint pow(unsigned long long pw) const{
        modint res(1), comp(*this);
        while(pw){
            if(pw&1) res *= comp;
            comp *= comp;
            pw >>= 1;
        }
        return res;
    }
    //以下、modが素数のときのみ
    constexpr modint inv() const{
        modint res(*this);
        return res.pow(mod - 2);
    }
    constexpr modint& operator/=(const modint &a){
        (x *= a.inv().x)%=mod;
        return *this;
    }
    constexpr modint operator/(const modint &a) const{
        return modint(x) /= a;
    }
};

#define mod1 998244353
using mint = modint<mod1>;

ostream& operator<<(ostream& os, const mint& a){
    os << a.x;
    return os;
}
using vm = vector<mint>;
class NTT{
    const int root;
    void make_root_pow(int n, vm &root_pow){
        root_pow.resize(n + 1);
        mint new_root = mint(root).pow((mod1 - 1) / n);
        root_pow[0].x = 1;
        rep(i,n){
            root_pow[i + 1] = root_pow[i] * new_root;
        }
    }
    void make_bit_reverse(int n, vector<int> &v){
        v.resize(n);
        rep(i,n) v[i] = i;
        for(int i = 1; (1<<i) <= n; ++i){
            int l = 1<<(i - 1), r = 1<<i;
            int plus = n >> i;
            for(int j = l; j < r; ++j){
                int temp = v[j - l] + plus;
                if(j < temp) swap(v[j], v[temp]);
            }
        }
    }
    void dft(int n, vm &f, bool inv, vm &root_pow, vector<int> &id){
        vm g(n);
        rep(i,n) g[i] = f[id[i]];
        swap(f, g);
        for(int l = n / 2, len = 1; l >= 1; l /= 2, len *= 2){
            for(int i = 0; i < n; i += len * 2){
                rep(j, len){
                    mint z = inv ? root_pow[n - l * j] : root_pow[l * j];
                    g[i + j] = f[i + j] + (z * f[i + len + j]);
                    g[i + len + j] = f[i + j] - (z * f[i + len + j]);
                }
            }
            swap(f, g);
        }
        if(inv) {
            mint n_inv = mint(n).inv();
            rep(i, n) f[i] *= n_inv;
        }
    }
public:
    NTT(int _x = 3) : root(_x){}
    vm convolution(vm &a, vm &b){
        int sz = a.size() + b.size() - 1, n = 1;
        while(sz > n) n *= 2;
        vm g(n, 0), h(n, 0), root_pow(n + 1, 1), gh(n);
        vector<int> id(n);
        copy(ALL(a), g.begin());
        copy(ALL(b), h.begin());
        make_root_pow(n, root_pow);
        make_bit_reverse(n, id);
        dft(n, g, false, root_pow, id);
        dft(n, h, false, root_pow, id);
        rep(i, n) gh[i] = g[i] * h[i];
        dft(n, gh, true, root_pow, id);
        gh.resize(sz);
        return gh;
    }
};

const ll MAX_N = ll(3e+5) + 10;
vm fact(MAX_N, mint(1)), fact_inv(MAX_N, mint(1));
void makefact(){
    reps(i,2,MAX_N) {
        fact[i] = fact[i-1] * mint(i);
        fact_inv[i] = fact[i].inv();
    }
}

int main() {
    makefact();
    vec num(26, 0);
    cin>>S;
    N = S.size();
    for(char c : S) ++num[c - 'a'];
    sort(ALL(num));
    NTT ntt;
    vm dp(1, 0), temp;
    dp[0] = 1;
    int sum = 0;
    rep(i, 26){
        sum += num[i];
        temp.resize(num[i] + 1);
        rep(j, num[i] + 1) temp[j] = fact_inv[j];
        copy(fact_inv.begin(), fact_inv.begin() + num[i] + 1, temp.begin());
        dp = ntt.convolution(dp, temp);
        dp.resize(sum + 1);
    }
    mint ans(0);
    rep(i, N) ans += fact[i + 1] * dp[i + 1];
    cout<<ans<<endl;
}
0