이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
int S, N;
cin >> S >> N;
vector<int> values, weights;
for(int i=0; i<N; i++){
int value, weight, freq;
cin >> value >> weight >> freq;
while(freq--){
values.push_back(value);
weights.push_back(weight);
}
}
N = weights.size();
vector<vector<int>> dp(N+1, vector<int>(S+1, 0));
for(int i=1; i<=N; i++){
for(int j=0; j<=S; j++){
dp[i][j] = dp[i-1][j];
int left = j - weights[i-1];
if(left >= 0)
dp[i][j] = max(dp[i][j], dp[i-1][left] + values[i-1]);
}
}
cout << dp[N][S] << endl;
}
# | 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... |