diff options
author | crupest <crupest@outlook.com> | 2021-02-24 15:32:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-24 15:32:25 +0800 |
commit | b65d176c4c13fc916f09c192af97fc2edd5faa90 (patch) | |
tree | ffbf43549b5af3bf27f2020a25c7a032a5ee2a3c /works/solutions/acwing/4.cpp | |
parent | de8f16f524a160199c9dfbf78c26d9eb080b5e9a (diff) | |
download | crupest-b65d176c4c13fc916f09c192af97fc2edd5faa90.tar.gz crupest-b65d176c4c13fc916f09c192af97fc2edd5faa90.tar.bz2 crupest-b65d176c4c13fc916f09c192af97fc2edd5faa90.zip |
import(solutions): Add acwing problem 4 (aka multiple pack problem).
Diffstat (limited to 'works/solutions/acwing/4.cpp')
-rw-r--r-- | works/solutions/acwing/4.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/works/solutions/acwing/4.cpp b/works/solutions/acwing/4.cpp new file mode 100644 index 0000000..3270402 --- /dev/null +++ b/works/solutions/acwing/4.cpp @@ -0,0 +1,51 @@ +#include <algorithm>
+#include <iostream>
+
+int N, V;
+int v[101];
+int w[101];
+int s[101];
+int states[101];
+
+void CompletePack(int v, int w) {
+ for (int j = v; j <= V; j++) {
+ states[j] = std::max(states[j], states[j - v] + w);
+ }
+}
+
+void ZeroOnePack(int v, int w) {
+ for (int j = V; j >= v; j--) {
+ states[j] = std::max(states[j], states[j - v] + w);
+ }
+}
+
+int main() {
+ std::cin >> N >> V;
+
+ for (int i = 1; i <= N; i++) {
+ std::cin >> v[i] >> w[i] >> s[i];
+ }
+
+ for (int i = 1; i <= N; i++) {
+ if (v[i] * s[i] >= V) {
+ CompletePack(v[i], w[i]);
+ } else {
+ int k = 1;
+ int amount = s[i];
+
+ while (k < amount) {
+ ZeroOnePack(k * v[i], k * w[i]);
+ amount -= k;
+ k *= 2;
+ }
+
+ if (amount != 0) {
+ ZeroOnePack(amount * v[i], amount * w[i]);
+ }
+ }
+ }
+
+ std::cout << states[V];
+
+ return 0;
+}
|