이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int int64_t
using namespace std;
int S, N;
int w[1010];
int v[1010];
int dp[2010][1010];
int32_t main()
{
cin >> S >> N;
int pos = 1;
for(int i = 1; i <= N; i++){
int vi, wi, ki; cin >> vi >> wi >> ki;
int j;
for(j = pos; j < pos+ki; j++){
w[j]=wi;
v[j]=vi;
}
pos = j;
}
for(int i = 0; i <= pos; i++) dp[0][i]=0;
for(int i = 0; i <= S; i++) dp[i][0]=0;
for(int i = 1; i <= S; i++){
for(int j = 1; j < pos; j++){
if(i-w[j]<0) dp[i][j]=dp[i][j-1];
else{
dp[i][j]=max(dp[i][j-1], dp[i-w[j]][j-1]+v[j]);
}
}
}
cout << dp[S][pos-1];
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... |