이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int uint32_t
const int N = 1e5 + 1;
const int S = 2e3 + 1;
int dp[N][S];
/*
-- Sample 1 --
Input:
15 5
4 12 1
2 1 1
10 4 1
1 1 1
2 2 1
Output:
15
-- Sample 2 --
Input:
20 3
5000 15 1
100 1 3
50 1 4
Output:
5400
*/
int32_t main () {
int n, s; cin >> s >> n;
int v[n], w[n], k[n];
for (int i = 0; i < n; i++) cin >> v[i] >> w[i] >> k[i];
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= s; j++) {
dp[i][j] = dp[i][j - 1];
int count = max(min(j / w[i - 1], k[i - 1]), (int) 0);
for (int ii = 0; ii <= count; ii++) {
int weight = ii * w[i - 1], value = ii * v[i - 1];
if (j - weight < 0) break;
dp[i][j] = max(dp[i][j], dp[i - 1][j - weight] + value);
}
}
}
cout << dp[n][s] << endl;
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... |