結果

問題 No.1933 ABC String
ユーザー ぷらぷら
提出日時 2022-04-15 19:18:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 2,647 ms
コンパイル使用メモリ 202,104 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-12-24 22:16:46
合計ジャッジ時間 80,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
32,000 KB
testcase_01 AC 32 ms
53,888 KB
testcase_02 AC 35 ms
32,000 KB
testcase_03 AC 34 ms
32,000 KB
testcase_04 AC 34 ms
53,760 KB
testcase_05 AC 33 ms
26,880 KB
testcase_06 AC 33 ms
32,384 KB
testcase_07 AC 32 ms
32,128 KB
testcase_08 AC 41 ms
32,256 KB
testcase_09 AC 50 ms
32,256 KB
testcase_10 AC 46 ms
32,384 KB
testcase_11 AC 76 ms
32,128 KB
testcase_12 AC 45 ms
32,256 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,701 ms
54,016 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

long long fac[1000005], finv[1000005], inv[1000005];

void COMinit() {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < 1000005; i++) {
        fac[i] = fac[i - 1] * i % mod;
        inv[i] = mod - inv[mod % i] * (mod / i) % mod;
        finv[i] = finv[i - 1] * inv[i] % mod;
    }
}

long long COM(int n, int k){
    if(n == k) return 1;
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

int main() {
    string S;
    int A,B,C;
    cin >> S >> A >> B >> C;
    int a = 0,b = 0,c = 0;
    for(int i = 0; i < S.size(); i++) {
        if(S[i] == 'a') a++;
        if(S[i] == 'b') b++;
        if(S[i] == 'c') c++;
    }
    COMinit();
    A -= a;
    B -= b;
    C -= c;
    int ans = 0;
    for(int i = 0; i <= A+B; i++) {
        int cnt = 0;
        for(int j = 0; j <= i; j++) {
            cnt += COM(i+c-j-1,c-1)*COM(C+a+b+j+(A+B-i),a+b+(A+B-i)+j)%mod;
            cnt %= mod;
        }
        for(int j = 0; j <= A && j <= i; j++) {
            if(i-j > B) continue;
            ans += COM(i,j)*COM(A-j+b-1,b-1)%mod*COM(B-(i-j)+a-1,a-1)%mod*cnt%mod;
            ans %= mod;
        }
    }
    cout << ans << endl;
}
0