이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int s, n, maxv;
struct item_type {
int v, w;
};
vector<item_type> item;
vector<int> dp(2001), cnt(2001);
vector<bool> vis(2001);
int main () {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> s >> n;
for (int i = 1; i <= n; i++) {
int v, w, k;
cin >> v >> w >> k;
item_type temp;
temp.v = v, temp.w = w;
for (int j = 1; j <= k; j++) {
item.push_back(temp);
}
}
vis[0] = true;
for (auto i : item) {
for (int j = s; j >= i.w; j--) {
if (vis[j - i.w]) {
dp[j] = max(dp[j], dp[j - i.w] + i.v);
vis[j] = true;
maxv = max(maxv, dp[j + i.w]);
}
}
}
cout << maxv << 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... |