結果
問題 | No.2164 Equal Balls |
ユーザー | trineutron |
提出日時 | 2022-12-15 16:42:33 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,593 bytes |
コンパイル時間 | 4,411 ms |
コンパイル使用メモリ | 286,392 KB |
実行使用メモリ | 10,784 KB |
最終ジャッジ日時 | 2024-04-26 17:38:27 |
合計ジャッジ時間 | 12,068 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,944 KB |
testcase_02 | AC | 12 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 12 ms
6,944 KB |
testcase_05 | AC | 27 ms
6,944 KB |
testcase_06 | AC | 26 ms
6,940 KB |
testcase_07 | AC | 23 ms
6,940 KB |
testcase_08 | TLE | - |
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 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using mint = modint998244353; std::vector<mint> fact, inv; void init(int n) { fact.resize(n + 1); inv.resize(n + 1); fact[0] = 1; for (int i = 1; i <= n; i++) { fact[i] = fact[i - 1] * i; } inv[n] = fact[n].inv(); for (int i = n; i >= 1; i--) { inv[i - 1] = inv[i] * i; } } mint ncr(int n, int r) { if (r < 0 or n < r) return 0; return fact[n] * inv[r] * inv[n - r]; } int main() { init(600); int n, m; cin >> n >> m; vector<int> a(n), b(n); for (auto &&x : a) { cin >> x; } for (auto &&x : b) { cin >> x; } int offset = 300; vector<vector<mint>> count(m, vector<mint>(2 * offset + 1, 1)); for (int i = 0; i < n; i++) { for (int j = -offset; j <= offset; j++) { count.at(i % m).at(j + offset) *= ncr(a.at(i) + b.at(i), a.at(i) + j); } } int offset2 = (m + 1) / 2 * 300; vector<mint> ans(2 * offset2 + 1); ans.at(offset2) = 1; for (int i = 0; i < m; i++) { vector<mint> ans_new(2 * offset2 + 1); for (int j = 0; j <= 2 * offset2; j++) { for (int k = -offset; k <= offset; k++) { int j_next = j + k; if (j_next < 0 or 2 * offset2 < j_next) continue; ans_new.at(j_next) += ans.at(j) * count.at(i).at(k + offset); } } ans = move(ans_new); } cout << ans.at(offset2).val() << endl; return 0; }