이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
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;
dp[0] = 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;
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:21:44: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | while ((tot + 1) * w <= c && i < a.size()) {
| ~~^~~~~~~~~~
# | 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... |