結果

問題 No.1195 数え上げを愛したい(文字列編)
ユーザー dekomori_sanaedekomori_sanae
提出日時 2022-03-23 13:16:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,261 ms / 3,000 ms
コード長 2,032 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 134,296 KB
実行使用メモリ 92,148 KB
最終ジャッジ日時 2024-10-11 11:01:04
合計ジャッジ時間 37,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,218 ms
92,024 KB
testcase_01 AC 2,211 ms
92,148 KB
testcase_02 AC 2,203 ms
92,148 KB
testcase_03 AC 556 ms
39,792 KB
testcase_04 AC 581 ms
44,548 KB
testcase_05 AC 2,197 ms
84,624 KB
testcase_06 AC 13 ms
10,624 KB
testcase_07 AC 14 ms
10,496 KB
testcase_08 AC 273 ms
26,212 KB
testcase_09 AC 2,240 ms
90,964 KB
testcase_10 AC 1,098 ms
55,132 KB
testcase_11 AC 2,186 ms
86,988 KB
testcase_12 AC 2,157 ms
82,728 KB
testcase_13 AC 1,167 ms
68,384 KB
testcase_14 AC 1,075 ms
49,176 KB
testcase_15 AC 1,094 ms
54,192 KB
testcase_16 AC 1,083 ms
49,848 KB
testcase_17 AC 288 ms
27,704 KB
testcase_18 AC 2,179 ms
83,024 KB
testcase_19 AC 2,175 ms
82,744 KB
testcase_20 AC 1,179 ms
68,648 KB
testcase_21 AC 2,261 ms
86,488 KB
testcase_22 AC 1,157 ms
64,800 KB
testcase_23 AC 13 ms
10,624 KB
testcase_24 AC 14 ms
10,624 KB
testcase_25 AC 14 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <numeric>
#include <functional>
#include <atcoder/convolution>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef pair<ll, ll> P;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define exrep(i, a, b) for(ll i = a; i <= b; i++)
#define out(x) cout << x << endl
#define exout(x) printf("%.10f\n", x)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back
#define re0 return 0
const ll mod = 998244353;
const ll INF = 1e16;
 
const ll MAX = 300010;
 
ll fact[MAX];  // fact[i] : iの階乗のmod
ll inv[MAX];  // inv[i] : iの逆数のmod
ll invfact[MAX];  // invfact[i] : iの階乗の逆数のmod
 
void init() {
    fact[0] = 1;
    inv[0] = inv[1] = 1;
    invfact[0] = 1;
    for(ll i = 1; i < MAX; i++) {
        fact[i] = i * fact[i-1] % mod;
        if(i >= 2) {
            inv[i] = mod - inv[mod % i] * (mod / i) % mod;
        }
        invfact[i] = invfact[i-1] * inv[i] % mod;
    }
}
 
int main() {
    string s;
    cin >> s;
    ll n = s.size();
    
    init();
    
    vl a(26);
    for(char c : s) {
        a[(ll)(c - 'a')]++;
    }

    vvl dp(27, vl(n+1));  // dp[i][j] : iまでで、j個使うときの場合の数
    dp[0][0] = 1;
    rep(i, 26) {
        vl f(n+1);
        exrep(j, 0, a[i]) {
            f[j] = invfact[j];
        }
        vl g(n+1);
        exrep(j, 0, n) {
            g[j] = dp[i][j] * invfact[j] % mod;
        }
        vl h = convolution<mod>(f, g);
        exrep(j, 0, n) {
            dp[i+1][j] = fact[j] * h[j] % mod;
        }
    }
    
    ll ans = 0;
    exrep(j, 1, n) {
        ans += dp[26][j];
        ans %= mod;
    }
    
    out(ans);
    re0;
}
0