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