# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1092555 | AryanPadarthi | Knapsack (NOI18_knapsack) | C++11 | 1064 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Source: https://usaco.guide/general/io
#include <bits/stdc++.h>
using namespace std;
int main() {
int w;
int n;
int mval=0;
cin >> w >> n;
vector<long long> points(n);
vector<int> weight(n);
vector<int> count(n);
for (int i = 0; i < n; i++){
cin >> points[i] >> weight[i] >> count[i];
}
vector<long long> dp(w+1,0);
//dp[0]=1;
for (int i = 0; i < n; i++){
for (int j = 0; j < count[i]; j++){
for (int k = dp.size()-1; k > -1; k--){
if (dp[k] > 0){
if (k+weight[i]<dp.size()){
dp[k+weight[i]] = max(dp[k+weight[i]],dp[k]+points[i]);
}
}
}
if (j==0){
dp[weight[i]] = max(dp[weight[i]],points[i]);
}
}
}
for (int i = 0; i < dp.size(); i++){
if (dp[i]>mval){
mval = dp[i];
}
}
cout << mval;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |