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;
int s, n;
vector<pair<int, int> > cake[2005];
int memo[2005][2005];
vector<pair<int, int> > v;
int sizee;
int dp(int idx, int we){
if(we < 0){
return INT_MIN;
}
if(idx < 0){
return 0;
}
int &res = memo[idx][we];
if(res != -1) return res;
auto [a,b] = v[idx];
return res = max(dp(idx - 1, we), dp(idx - 1, we - a) + b);
}
int main(){
memset(memo, -1, sizeof memo);
cin >> s >> n;
for(int i = 1; i<=n; i++){
int x, y, z;
cin >> x >> y >> z;
cake[y].push_back({x, z});
}
for(int i = 1; i<=2000; i++){
sort(cake[i].rbegin(), cake[i].rend());
int used = 2000;
int j = 0;
while(used != 0 && j < cake[i].size()){
auto &[a, b] = cake[i][j];
v.push_back({i, a});
used--;
b--;
if(b == 0) j++;
}
}
sizee = v.size();
cout << dp(sizee - 1, s);
}
Compilation message (stderr)
knapsack.cpp: In function 'int main()':
knapsack.cpp:34:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | while(used != 0 && j < cake[i].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... |