이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using i64 = long long;
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int S, N;
std::cin >> S >> N;
std::vector<int> dp(1 + S);
for (int i = 0; i < N; i++) {
int v, w, k;
std::cin >> v >> w >> k;
for (int c = 1; c <= k; c++) {
for (int j = S - w * c; j >= 0; j--) {
dp[j + w * c] = std::max(dp[j + w * c], dp[j] + v * c);
}
}
}
std::cout << dp[S] << "\n";
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... |