| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 756678 | bzhu | Knapsack (NOI18_knapsack) | C++14 | 1066 ms | 320 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0)->sync_with_stdio(0);
int s, n;
cin >> s >> n;
vector<int> dp(s + 1);
for (int i=0; i<n; i++) {
int value, weight, quantity;
cin >> value >> weight >> quantity;
for (int j=0; j<quantity; j++) {
for (int k=s; k>=weight; k--) {
dp[k] = max(dp[k], dp[k - weight] + value);
}
}
}
cout << dp[s] << endl;
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
