結果
問題 | No.2364 Knapsack Problem |
ユーザー | Carpenters-Cat |
提出日時 | 2021-06-28 23:41:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,056 bytes |
コンパイル時間 | 554 ms |
コンパイル使用メモリ | 74,220 KB |
実行使用メモリ | 35,968 KB |
最終ジャッジ日時 | 2024-07-07 08:22:19 |
合計ジャッジ時間 | 2,434 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <vector> using namespace std; int main() { int N, M, W; cin >> N >> M >> W; int n = N + M; int wei[20]; int val[20]; for (int i = 0; i < N; i++) { cin >> wei[i] >> val[i]; } for (int i = N; i < N + M; i++) { cin >> wei[i] >> val[i]; wei[i] *= -1; val[i] *= -1; } int inf = 1e9 + 7; vector<vector<int>> dp(1 << n, vector<int>(W + 1, -inf)); dp[0][0] = 0; for (int i = 1; i < (1 << n); i++) { for (int j = 0; j < n; j++) { if ((i >> j) & 1) { for (int k = 0; k <= W; k++) { dp[i][k] = max(dp[i][k], dp[i - (1 << j)][k]); } for (int k = max(0, -wei[j]); k <= min(W, W - wei[j]); k++) { dp[i][k + wei[j]] = max(dp[i][k + wei[j]], dp[i - (1 << j)][k] + val[j]); } } } } int ans = 0; for (int i = 0; i <= W; i++) { ans = max(ans, dp[(1 << n) - 1][i]); } cout << ans << endl; }