이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
const int M = 2000;
std::vector <std::pair <int, int>> items[M + 1];
int dp[M + 1];
int main(void) {
std::ios_base::sync_with_stdio(0);
std::cin.tie(nullptr);
int S, n; std::cin >> S >> n;
for (int i = 0; i < n; i += 1) {
int v, w, k; std::cin >> v >> w >> k;
items[w].emplace_back(v, std::min(k, S / w));
}
for (int w = 1; w <= S; w += 1) {
std::sort(items[w].begin(), items[w].end(), std::greater <> ());
for (auto [v, cnt] : items[w]) {
int total = 0;
for (int i = 1; i <= cnt and total <= S; i += 1) {
for (int t = S; t >= w; t -= 1)
dp[t] = std::max(dp[t], dp[t - w] + v);
total += w;
}
}
}
std::cout << dp[S] << '\n';
return 0^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... |