# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1033466 | cryptobunny | Knapsack (NOI18_knapsack) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
int main() {
int s, n;
cin >> s >> n;
vector<int> dp(s + 1, INT_MIN);
map<int, vector<pair<int, int>>> items;
for (int i = 0; i < n; i++) {
int v, w, k;
cin >> v >> w >> k;
items[w].push_back({v, k});
}
int ans = 0;
for (auto &[w, a] : items) {
sort(a.begin(), a.end());
reverse(a.begin(), a.end());
for (int c = s; c >= 0; c--) {
int i = 0, tot = 0, used = 0, gained = 0;
while ((tot + 1) * w <= c && i < a.size()) {
tot++;
gained += a[i].first;
if (dp[c - w * tot] != INT_MIN) {
dp[c] = max(dp[c], dp[c - w * tot] + gained);
ans = max(ans, dp[c]);
}
used++;
if (used == a[i].second) {
i++;
used = 0;
}
}
}
}
cout << ans << endl;
}