結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | pekempey |
提出日時 | 2017-12-15 21:31:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 872 ms |
コンパイル使用メモリ | 73,040 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-05-09 05:57:26 |
合計ジャッジ時間 | 4,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 91 ms
6,940 KB |
testcase_09 | AC | 6 ms
6,944 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; const int N = 5000; int n; long long C; long long V[N]; long long W[N]; int p[N]; long long ans; // ***************************........ // [--------greedy-----------] // // **********************.*...*.**.... // [--------core---------] void dfs(long long w, long long v, int k) { if (w > C) return; ans = max(ans, v); for (int i = k; i < n; i++) { // You can estimate the upper bound by Rational Knapsack problem. if (v + (double)V[ p[i] ] / W[ p[i] ] * (C - w) < ans - 1e-8) break; dfs(w + W[ p[i] ], v + V[ p[i] ], i + 1); } } int main() { cin >> n >> C; for (int i = 0; i < n; i++) { cin >> V[i] >> W[i]; p[i] = i; } sort(p, p + n, [&](int i, int j) { return (double)V[i] / W[i] > (double)V[j] / W[j]; }); long long v = 0; long long w = 0; int k = 0; while (k < n) { v += V[ p[k] ]; w += W[ p[k] ]; k++; if (w > C) break; } for (int i = k - 1; i >= 0; i--) { w -= W[ p[i] ]; v -= V[ p[i] ]; if (v + (double)V[ p[i] ] / W[ p[i] ] * (C - w) < ans - 1e-8) break; dfs(w, v, i + 1); } cout << ans << endl; }