結果
問題 | No.2429 Happiest Tabehodai Ways |
ユーザー | achapi |
提出日時 | 2023-08-18 22:35:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 4,213 ms |
コンパイル使用メモリ | 271,328 KB |
実行使用メモリ | 70,180 KB |
最終ジャッジ日時 | 2024-05-06 17:59:52 |
合計ジャッジ時間 | 8,292 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using mint = atcoder::modint998244353; using namespace std; int main() { int N, K; cin >> N >> K; vector<int> C(N), D(N); for (int i = 0; i < N; i++){ cin >> C[i]; } for (int i = 0; i < N; i++){ cin >> D[i]; } vector<map<int, mint>> dp(K + 1); dp[0][0] = 1; for (int i = 0; i < K; i++){ for (auto [k, v] : dp[i]){ for (int j = 0; j < N; j++){ if (i + C[j] <= K){ dp[i + C[j]][k + D[j]] += v; } } } } map<int, mint> m; int M = 0; for (int i = 0; i <= K; i++){ for (auto [k, v] : dp[i]){ m[k] += v; M = max(M, k); } } cout << M << ' ' << m[M].val() << '\n'; }