結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | ミドリムシ |
提出日時 | 2017-12-15 21:20:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,025 bytes |
コンパイル時間 | 750 ms |
コンパイル使用メモリ | 73,492 KB |
実行使用メモリ | 121,156 KB |
最終ジャッジ日時 | 2024-05-09 00:22:29 |
合計ジャッジ時間 | 13,727 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
120,704 KB |
testcase_01 | AC | 33 ms
120,648 KB |
testcase_02 | AC | 34 ms
120,636 KB |
testcase_03 | AC | 34 ms
120,620 KB |
testcase_04 | AC | 39 ms
120,564 KB |
testcase_05 | AC | 34 ms
120,704 KB |
testcase_06 | WA | - |
testcase_07 | AC | 145 ms
120,700 KB |
testcase_08 | AC | 156 ms
120,764 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 825 ms
121,088 KB |
testcase_12 | WA | - |
testcase_13 | AC | 426 ms
120,892 KB |
testcase_14 | AC | 713 ms
121,056 KB |
testcase_15 | WA | - |
testcase_16 | AC | 870 ms
121,052 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 651 ms
121,076 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 37 ms
121,088 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; struct item{ long value, weight; }; int n; long W; vector<item> items; long dp[5000][3000]; long pack(int now, long weight_now){ if(now == n){ return 0; }else if(dp[now][weight_now / ((W + 2999) / 3000 + 1)] != -1){ return dp[now][weight_now / ((W + 2999) / 3000 + 1)]; }else{ if(weight_now + items[now].weight > W){ return dp[now][weight_now / ((W + 2999) / 3000 + 1)] = pack(now + 1, weight_now); }else{ return dp[now][weight_now / ((W + 2999) / 3000 + 1)] = max(pack(now + 1, weight_now), items[now].value + pack(now + 1, weight_now + items[now].weight)); } } } int main(){ cin >> n >> W; items.resize(n); for(int i = 0; i < n; i++){ cin >> items[i].value >> items[i].weight; } for(int i = 0; i < 5000; i++){ for(int j = 0; j < 3000; j++){ dp[i][j] = -1; } } cout << pack(0, 0) << endl; }