結果
問題 | No.1933 ABC String |
ユーザー | ytqm3 |
提出日時 | 2022-05-06 17:44:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,332 bytes |
コンパイル時間 | 1,938 ms |
コンパイル使用メモリ | 202,264 KB |
実行使用メモリ | 14,880 KB |
最終ジャッジ日時 | 2024-07-05 18:59:13 |
合計ジャッジ時間 | 11,134 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,568 KB |
testcase_01 | AC | 6 ms
8,064 KB |
testcase_02 | AC | 8 ms
8,192 KB |
testcase_03 | AC | 5 ms
8,192 KB |
testcase_04 | AC | 5 ms
8,140 KB |
testcase_05 | AC | 6 ms
8,192 KB |
testcase_06 | AC | 6 ms
8,144 KB |
testcase_07 | AC | 6 ms
8,192 KB |
testcase_08 | AC | 15 ms
8,148 KB |
testcase_09 | AC | 20 ms
8,012 KB |
testcase_10 | AC | 20 ms
8,192 KB |
testcase_11 | AC | 48 ms
8,064 KB |
testcase_12 | AC | 18 ms
8,064 KB |
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 | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | TLE | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 998244353; long long fac[200005], finv[200005], inv[200005]; void COMinit() { fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1; for (int i = 2; i < 200005; 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 P = 0,Q = 0,R = 0; for(int i = 0; i < S.size(); i++) { if(S[i] == 'a') P++; if(S[i] == 'b') Q++; if(S[i] == 'c') R++; } COMinit(); int T=A-P,U=B-Q,V=C-R; int ans = 0; for(int k = 0; k <= T+U; k++) { int cnt1 = 0; for(int i = 0; i <= k; i++) { cnt1 += COM(R-1+i,R-1)*COM(V+P+Q+T+U-i+1-1,V)%mod; cnt1 %= mod; } int cnt2 = 0; for(int i = max(0,k-U); i <= T && i <= k; i++) { cnt2 += COM(k,i)*COM(T-i+Q-1,Q-1)%mod*COM(U-(k-i)+P-1,P-1)%mod; cnt2 %= mod; } ans += (long(cnt1) * cnt2) % mod; ans %= mod; } cout << ans << endl; }