結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | Pachicobue |
提出日時 | 2017-12-22 04:02:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,473 bytes |
コンパイル時間 | 2,657 ms |
コンパイル使用メモリ | 208,644 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-05-09 18:04:46 |
合計ジャッジ時間 | 6,354 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 67 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 <bits/stdc++.h> #define show(x) cerr << #x << " = " << x << endl using namespace std; using ll = long long; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz:" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } struct Product { ll v; ll w; bool operator<(const Product& p) const { return v * p.w < w * p.v; } bool operator>(const Product& p) const { return v * p.w > w * p.v; } }; ostream& operator<<(ostream& os, const Product& p) { os << "<" << p.v << ", " << p.w << ">"; return os; } ll ans = 0; int N; ll W; void dfs(const vector<Product>& product, const int ind, const ll weight, const ll value) { if (ind == N) { ans = max(ans, value); return; } if (weight + product[ind].w <= W) { ll relaxed = value + product[ind].v; ll use = weight + product[ind].w; for (int i = ind + 1; i < N; i++) { if (use + product[i].w <= W) { use += product[i].w; relaxed += product[i].v; } else { use = W; relaxed += (product[i].v * (W - use)) / product[i].w; break; } } if (relaxed + value > ans) { dfs(product, ind + 1, weight + product[ind].w, value + product[ind].v); } } ll relaxed = value; ll use = weight; for (int i = ind + 1; i < N; i++) { if (use + product[i].w <= W) { use += product[i].w; relaxed += product[i].v; } else { use = W; relaxed += (product[i].v * (W - use)) / product[i].w; break; } } if (relaxed + value > ans) { dfs(product, ind + 1, weight, value); } } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> W; vector<Product> product; for (int i = 0; i < N; i++) { ll v, w; cin >> v >> w; if (w > W) { continue; } product.push_back(Product{v, w}); } N = product.size(); sort(product.begin(), product.end(), greater<Product>{}); dfs(product, 0, 0, 0); cout << ans << endl; return 0; }