이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
ll s, n;
vector<ll> v, w, k;
vector<vector<ll>> dp;
signed main() {
cin >> s >> n;
v.resize(n);
w.resize(n);
k.resize(n);
dp.assign(n, vector<ll>(s + 1, 0LL));
for (int i = 0; i < n; i++) {
cin >> v[i] >> w[i] >> k[i];
}
for (int i = 0; i <= s; i++) {
dp[0][i] = min(i / w[0], k[0]) * v[0];
}
for (int i = 1; i < n; i++) {
for (int j = 0; j <= s; j++) {
dp[i][j] = dp[i-1][j];
// if (j > w[i]) dp[i][j] = max(dp[i][j], dp[i][j-w[i]] + v[i]);
for (ll l = 1; j >= l * w[i] && l <= k[i]; l++) {
dp[i][j] = max(dp[i][j], dp[i-1][j-l*w[i]] + l * v[i]);
}
}
}
// for (int i = 0; i< n; i++) {
// for (int j = 0; j <= s; j++) {
// cout << dp[i][j] << ' ';
// }
// cout << '\n';
// }
ll ans = 0;
for (int i = 0; i <= s; i++) {
ans = max(ans, dp[n-1][i]);
}
cout << ans << '\n';
}
# | 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... |