This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#ifdef local
#include "debug.hpp"
#define pr(...) debug(#__VA_ARGS__, __VA_ARGS__)
#define prs(...) debug_nameless(__VA_ARGS__)
#else
#define pr(...) 69
#define prs(...) 69
#endif
#define endl '\n'
const int inf = 1e9;
const long long binf = 1e18;
struct Item{
int p, w, f;
};
void solve(int tc){
int s, n;
cin >> s >> n;
vector <vector<Item>> items(s+1);
for(int i = 0; i < n; i++){
int p, w, f;
cin >> p >> w >> f;
items[w].push_back({p, w, f});
}
auto cmp = [&](Item a, Item b){
return a.p > b.p;
};
for(int i = 1; i <= s; i++){
sort(items[i].begin(), items[i].end(), cmp);
}
vector <pair<int,int>> arr;
for(int i = 1; i <= s; i++){
int total = 0;
for(int pos = 0; pos < items[i].size(); pos++){
for(int j = 0; j < items[i][pos].f && total < s; j++){
if(total + items[i][pos].w <= s){
arr.push_back({items[i][pos].w, items[i][pos].p});
}
total += items[i][pos].w;
}
}
}
vector <long long> dp(s+1, 0);
for(int i = 1; i <= arr.size(); i++){
for(int j = s; j >= 0; j--){
if(j - arr[i-1].first >= 0){
dp[j] = max(dp[j], dp[j-arr[i-1].first] + arr[i-1].second);
}
}
}
cout << dp[s] << endl;
}
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int tc = -1;
tc = 1;
if(tc != 1) cin >> tc;
for(int t = 0; t < tc; t++){
pr(t); prs(string(50, '-'));
solve(t);
prs(string(50, '-') + "\n");
}
return 0;
}
Compilation message (stderr)
knapsack.cpp: In function 'void solve(int)':
knapsack.cpp:40:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<Item>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int pos = 0; pos < items[i].size(); pos++){
| ~~~~^~~~~~~~~~~~~~~~~
knapsack.cpp:50:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for(int i = 1; i <= arr.size(); i++){
| ~~^~~~~~~~~~~~~
knapsack.cpp: In function 'int main()':
knapsack.cpp:9:19: warning: statement has no effect [-Wunused-value]
9 | #define pr(...) 69
| ^~
knapsack.cpp:68:5: note: in expansion of macro 'pr'
68 | pr(t); prs(string(50, '-'));
| ^~
knapsack.cpp:10:20: warning: statement has no effect [-Wunused-value]
10 | #define prs(...) 69
| ^~
knapsack.cpp:68:12: note: in expansion of macro 'prs'
68 | pr(t); prs(string(50, '-'));
| ^~~
knapsack.cpp:10:20: warning: statement has no effect [-Wunused-value]
10 | #define prs(...) 69
| ^~
knapsack.cpp:70:5: note: in expansion of macro 'prs'
70 | prs(string(50, '-') + "\n");
| ^~~
# | 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... |