이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int ll
signed main() {
int s, n;
cin >> s >> n;
vector<vector<pair<int, int>>> items(s+1);
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 -1 <= s / item) {
if (items[item].size() <= num) break;
if (amo > items[item][num].second) {
amo = 1;
num++;
if (items[item].size() <= num) continue;
}
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) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:21:29: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<std::vector<std::pair<long long int, long long int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | for (int item = 1; item < items.size(); item++) {
| ~~~~~^~~~~~~~~~~~~~
knapsack.cpp:26:40: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
26 | if (items[item].size() <= num) break;
| ~~~~~~~~~~~~~~~~~~~^~~~~~
knapsack.cpp:30:44: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
30 | if (items[item].size() <= num) continue;
| ~~~~~~~~~~~~~~~~~~~^~~~~~
# | 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... |