結果
問題 | No.2944 Sigma Partition Problem |
ユーザー | SnowBeenDiding |
提出日時 | 2024-10-18 23:12:20 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,086 bytes |
コンパイル時間 | 6,583 ms |
コンパイル使用メモリ | 310,456 KB |
実行使用メモリ | 84,548 KB |
最終ジャッジ日時 | 2024-10-18 23:12:37 |
合計ジャッジ時間 | 14,512 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
68,164 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
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 | AC | 20 ms
67,400 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> #define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++) using namespace atcoder; using namespace std; typedef long long ll; using mint = modint998244353; vector<mint> fact; mint nPk(int n, int k) { bool ok = 1; ok &= (0 <= k && k <= n); ok &= (0 <= n && n < fact.size()); if (!ok) return 0; return fact[n] / fact[n - k]; } // map<pair<int, int>, mint> memo; mint memo[4010][4010]; int used[4010][4010]; mint P(int n, int k) { if (used[n][k]) return memo[n][k]; used[n][k] = 1; if (n < 0 || k < 0) return memo[n][k] = 0; if (k == 0) return memo[n][k] = (n == 0); return memo[n][k] = P(n, k - 1) + P(n - k, k); } void f(int n, int k) { mint ans = 0; rep(i, 0, k + 1) ans += P(n - i, i); cout << ans.val() << endl; } int main() { fact = vector<mint>(200010); fact[0] = 1; rep(i, 1, 200010) fact[i] = fact[i - 1] * i; int q; cin >> q; while (q--) { int t, n, k; cin >> t >> n >> k; f(n, k); } }