이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define FOR(i, e) for (int i = 0; i < (e); i++)
#define FOR1(i, e) for (int i = 1; i <= (e); i++)
#define ull unsigned long long int
#define pii pair <int, int>
#define value first.first
#define weight first.second
#define quantity second
int n, s;
pair<pii, int> items[100000];
int dp[100001][2001];
int main(){
cin >> s >> n;
FOR(i, n){
cin >> items[i].value >> items[i].weight >> items[i].quantity;
}
FOR1(i, n) {
for (int j = 0; j <= s; j++) {
dp[i][j] = dp[i - 1][j];
if (j >= items[i - 1].weight){
dp[i][j] = max(dp[i][j], dp[i - 1][j - items[i - 1].weight] + items[i - 1].value);
}
}
}
cout << dp[n][s];
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... |