# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1091675 | artem_svl | Knapsack (NOI18_knapsack) | C++17 | 37 ms | 3932 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <set>
#include <string>
#include <algorithm>
#include <utility>
#include <unordered_map>
#include <cassert>
#include <queue>
typedef long long ll;
using namespace std;
struct Item {
int value;
int amount;
bool operator<(const Item& other) const {
return value > other.value;
}
};
struct ShopItem {
int weight;
int value;
};
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int test = 1;
// cin >> test;
int s, n;
while(test--) {
cin >> s >> n;
vector<int> cnt(s+1);
for(int i = 1; i <= s; ++i) {
cnt[i] = (s / i) + 1;
}
vector<vector<Item> > weights(s+1);
int v, w, k;
for(int _ = 0; _ < n; ++_) {
cin >> v >> w >> k;
weights[w].push_back({v, k});
}
vector<ShopItem> shopping_cart;
for(int ww = 0; ww <= s; ++ww) {
sort(weights[ww].begin(), weights[ww].end());
int cur = 0;
int i = 0;
while(cur < cnt[ww] && i < weights[ww].size()) {
int to_add = min(cnt[ww] - cur, weights[ww][i].amount);
for(int _ = 0; _ < to_add; ++_) {
shopping_cart.push_back({ww, weights[ww][i].value});
}
cur += to_add;
i++;
}
}
vector<int> mvv(s+1);
for(int i = 0; i < shopping_cart.size(); ++i) {
int w_ = shopping_cart[i].weight;
int v_ = shopping_cart[i].value;
// cout << w_ << ' ' << v_ << '\n';
for(int j = s; j >= w_; j--) {
mvv[j] = max(mvv[j], mvv[j-w_] + v_);
}
}
cout << mvv[s] << '\n';
}
}
컴파일 시 표준 에러 (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... |