# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
989552 | matus192 | Knapsack (NOI18_knapsack) | C++14 | 8 ms | 492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int s, n;
cin >> s >> n;
vector<vector<pair<int, int>>> items(2002);
for (int i = 0; i < n; i++) {
int val, w, amount;
cin >> val >> w >> amount;
items[w].push_back({val, amount});
}
for (auto vec : items) {
sort(vec.begin(), vec.end(), greater<pair<int, int>>());
}
vector<int> prv(s + 1, 0), akt(s + 1, 0);
for (int item = 1; item < items.size(); item++) {
for (int weight = 0; weight <= s; weight++) {
int val = 0, w = 0, num = 0, amo = 1;
while (amo <= s / item) {
if (items[item].size() <= num) break;
if (amo > items[item][num].second) {
amo = 1;
num++;
if (items[item].size() <= num) break;
}
val += items[item][num].first;
w += item;
amo++;
if (weight < w) break;
akt[weight] = max(akt[weight], val + prv[weight - w]);
}
}
prv = akt;
}
cout << akt[s] << '\n';
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... |