結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー karinohitokarinohito
提出日時 2022-01-08 22:46:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,818 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 170,508 KB
実行使用メモリ 21,112 KB
最終ジャッジ日時 2024-04-26 19:31:34
合計ジャッジ時間 10,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)

ll modPow(long long a, long long n, long long p) {
    if (n == 0) return 1; // 0乗にも対応する場合
    if (n == 1) return a % p;
    if (n % 2 == 1) return (a * modPow(a, n - 1, p)) % p;
    long long t = modPow(a, n / 2, p);
    return (t * t) % p;
}

ll phi(ll N) {
    ll res = N;
    for (ll i = 2; i * i <= N; i++) {
        if (N % i == 0) {
            res -= res / i;
            while (N % i == 0)N /= i;
        }
    }
    if (N != 1)res -= res / N;
    return res;
}

vector<ll> fact, factinv, inv;
ll mod = 998244353;
void prenCkModp(ll n) {
    fact.resize(n + 5);
    factinv.resize(n + 5);
    inv.resize(n + 5);
    fact.at(0) = fact.at(1) = 1;
    factinv.at(0) = factinv.at(1) = 1;
    inv.at(1) = 1;
    for (ll i = 2; i < n + 5; i++) {
        fact.at(i) = (fact.at(i - 1) * i) % mod;
        inv.at(i) = mod - (inv.at(mod % i) * (mod / i)) % mod;
        factinv.at(i) = (factinv.at(i - 1) * inv.at(i)) % mod;
    }

}
ll nCk(ll n, ll k) {
    if (n < k) return 0;
    return fact.at(n) * (factinv.at(k) * factinv.at(n - k) % mod) % mod;
}
int main() {
    string S;
    cin >> S;
    vector<vll> DP(27, vll(6001, 0));
    vll C(26, 0);
    rep(i, S.size()) {
        C[S[i] - 'a']++;
    }
    rep(i, C[0] + 1)DP[0][i]++;
    prenCkModp(100000);
    rep(i, 25) {
        rep(j, C[i + 1] + 1) {
            rep(k, 5001) {
                ll d = DP[i][k];
                ll q = nCk(k + j, j);
                DP[i + 1][k + j] += (d * q) % mod;
                DP[i + 1][k + j] %= mod;
            }
        }
    }
    ll an = 0;
    rep(i, 5001)an += DP[25][i+1];
    cout << an%mod << endl;
}
0