結果
問題 | No.1956 猫の額 |
ユーザー | suisen |
提出日時 | 2022-05-24 00:55:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 897 bytes |
コンパイル時間 | 1,113 ms |
コンパイル使用メモリ | 87,552 KB |
実行使用メモリ | 21,760 KB |
最終ジャッジ日時 | 2024-09-20 14:16:09 |
合計ジャッジ時間 | 4,974 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | RE | - |
testcase_02 | MLE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | MLE | - |
testcase_09 | RE | - |
testcase_10 | MLE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #include <atcoder/modint> using mint = atcoder::modint; int main() { int n, m, c; std::cin >> n >> m >> c; mint::set_mod(m); std::vector<int> a(n); for (auto &e : a) std::cin >> e; std::sort(a.begin(), a.end(), std::greater<int>()); const int s = std::accumulate(a.begin(), a.end(), 0); bool take_compl = 2 * c >= n; if (take_compl) { c = n - c; } std::vector dp(c + 1, std::vector<mint>(s + 1)); dp[0][0] = 1; for (int val : a) { for (int num = s / val; num >= 1; --num) { for (int sum = num * val; sum <= s; ++sum) { dp[num][sum] += dp[num - 1][sum - val]; } } } for (int sum = 1; sum <= s; ++sum) { std::cout << dp[c][take_compl ? s - sum : sum].val() << " \n"[sum == s]; } return 0; }