이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
using namespace std;
int main()
{
int s, n;
cin >> s >> n;
int v, w, k;
map<int, vector<pair<int, int>>> items;
for (int i = 0; i < n; i++) {
cin >> v >> w >> k;
if (w <= s) {
items[w].push_back({v, k});
}
}
int itemCnt = items.size();
long long dp[itemCnt + 1][s + 1];
for (int i = 0; i <= itemCnt; i++) {
for (int j = 0; j <= s; j++) {
dp[i][j] = (i == 0 || j == 0) ? 0 : -1;
}
}
long long maxVal = 0, i = 1;
for (auto item : items) {
w = item.first;
sort(item.second.begin(), item.second.end(), greater<pair<int, int>>());
for (int j = 1; j <= s; j++) {
int amnt = 0; // cur item amnt
int icnt = 0; // different item count
int tot = 0; // total item count
long long profit = 0;
dp[i][j] = dp[i - 1][j];
while ((tot + 1) * w <= j && icnt < item.second.size()) {
tot++;
profit += item.second[icnt].first;
if (dp[i - 1][j - tot * w] != -1) {
dp[i][j] = max(dp[i][j], dp[i - 1][j - tot * w] + profit);
maxVal = max(maxVal, dp[i][j]);
}
amnt++;
if (amnt == item.second[icnt].second) {
amnt = 0;
icnt++;
}
}
}
i++;
}
cout << maxVal << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:42:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | while ((tot + 1) * w <= j && icnt < item.second.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... |