結果
問題 | No.2741 Balanced Choice |
ユーザー | baohuy11 |
提出日時 | 2024-04-20 12:34:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 844 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 74,676 KB |
実行使用メモリ | 27,592 KB |
最終ジャッジ日時 | 2024-10-12 07:56:13 |
合計ジャッジ時間 | 7,103 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int knapsack(const vector<vector<int>>& items, int w, int d) { int n = items.size(); vector<vector<int>> dp(w + 1, vector<int>(d + 1, 0)); for (int i = 1; i <= n; ++i) { const vector<int>& item = items[i - 1]; int type = item[0]; int weight = item[1]; int value = item[2]; for (int wi = w; wi >= weight; --w) { for (int di = d; di >= type; --d) { dp[wi][di] = max(dp[wi][di], dp[wi - weight][di - type] + value); } } } return dp[w][d]; } int main() { int n, w, d; cin >> n >> w >> d; vector<vector<int>> items(n, vector<int>(3)); for (int i = 0; i < n; ++i) { cin >> items[i][0] >> items[i][1] >> items[i][2]; } int max_value = knapsack(items, w, d); cout << max_value << endl; return 0; }