이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int LIM = 2000;
ll dp[2][LIM+1];
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int s, n;
ll w,k;
ll v;
fill(dp[0], dp[0]+LIM+1, 0);
cin >> s >> n;
for(int i = 0; i < n; i++) {
cin >> v >> w >> k;
//fill(dp[1], dp[1]+LIM+1, 0);
//memcpy(dp[1], dp[0], sizeof(ll)*(LIM+1));
for(int j = w; j <= LIM; j++) {
for(ll t = 1; t <= k; t++) {
if(t*w > j) break;
/*
if(dp[0][j-t*w]+t*v < dp[1][j]) break;
dp[1][j] = dp[0][j-t*w]+t*v;
*/
dp[1][j] = max({dp[1][j], dp[0][j-t*w]+t*v, dp[1][j-1]});
}
}
memcpy(dp[0], dp[1], sizeof(ll)*(s+1));
}
cout << dp[0][s] << '\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... |