diff options
author | crupest <crupest@outlook.com> | 2021-02-24 15:35:13 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-24 15:35:13 +0800 |
commit | af32dd10a12e007f92fad878322893e227f6c690 (patch) | |
tree | f5ce811f429ef13d9b4553a81efcd0d417b49cb9 | |
parent | a14a096c787a71f6e60a108f9640b6127b997404 (diff) | |
download | crupest-af32dd10a12e007f92fad878322893e227f6c690.tar.gz crupest-af32dd10a12e007f92fad878322893e227f6c690.tar.bz2 crupest-af32dd10a12e007f92fad878322893e227f6c690.zip |
import(solutions): Add acwing problem 5.
-rw-r--r-- | works/solutions/acwing/5.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/works/solutions/acwing/5.cpp b/works/solutions/acwing/5.cpp new file mode 100644 index 0000000..e451a2d --- /dev/null +++ b/works/solutions/acwing/5.cpp @@ -0,0 +1,51 @@ +#include <algorithm>
+#include <iostream>
+
+int N, V;
+int v[1001];
+int w[1001];
+int s[1001];
+int states[2001];
+
+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;
+}
|