# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1033439 | cryptobunny | Knapsack (NOI18_knapsack) | C++14 | 1 ms | 436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <cassert>
using namespace std;
int main() {
int s, n;
cin >> s >> n;
vector<int> val, cost;
for (int i = 0; i < n; i++) {
int v, w, k;
cin >> v >> w >> k;
int j;
for (j = 30; j >= 1; j--) {
if (k >= (1 << j)) {
break;
}
}
for (int x = 0; x < j; x++) {
val.push_back(v << x);
cost.push_back(w << x);
k -= 1 << x;
}
if (k) {
val.push_back(v * k);
cost.push_back(w * k);
}
}
vector<int> dp(s + 1);
int ans = 0;
for (int i = 0; i < val.size(); i++) {
assert(i < cost.size());
// cout << val[i] << " " << cost[i] << endl;
for (int w = s; w >= cost[i]; w--) {
dp[w] = max(dp[w], dp[w - cost[i]] + val[i]);
ans = max(ans, dp[w]);
}
}
cout << ans << endl;
}
컴파일 시 표준 에러 (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... |