# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1104182 | micro7 | Knapsack (NOI18_knapsack) | C++17 | 82 ms | 7240 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <cstdio>
#include <functional>
#include <map>
using namespace std;
constexpr int MAXS = 2000;
int n, s;
map<int, map<int, int, greater<>>> m;
int dp[MAXS + 1];
int main() {
scanf("%d%d", &s, &n);
for (int i = 0; i < n; ++i) {
int v, w, k;
scanf("%d%d%d", &v, &w, &k);
m[w][v] += k;
}
for (auto &[w, v_cnt] : m) {
for (int i = s; i >= w; --i) {
int prv_w = i, profit = 0;
for (auto [v, k] : v_cnt) {
while (prv_w >= w && k) {
prv_w -= w;
profit += v;
dp[i] = max(dp[i], dp[prv_w] + profit);
--k;
}
if (prv_w < w)
break;
}
}
}
printf("%d", dp[s]);
return 0;
}
컴파일 시 표준 에러 (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... |