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;
struct item
{
int v, w;
};
int n, s;
item a[100005];
int k[100005];
vector<item> b;
long long dp[20005][2005];
bool cmp(item &a, item &b)
{
if(a.w == b.w) return a.v > b.v;
return a.w < b.w;
}
int main()
{
//freopen("test.in","r",stdin);
//freopen("test.out","w",stdout);
cin>>s>>n;
for(int i = 0; i < n; i++){
cin>>a[i].v>>a[i].w>>k[i];
if(k[i] > s / a[i].w) k[i] = s / a[i].w;
}
sort(a, a + n, cmp);
//for(int i = 0; i < n; i++) cout<<a[i].v<<" "<<a[i].w<<" "<<a[i].k<<endl;
int cnt = 0;
b.push_back({0, 0});
for(int i = 0; i < n; i++){
int al = s / a[i].w;
if(al >= cnt + k[i]){
//lis[a[i].w][a[i].v] = a[i].k;
int t = k[i];
item tmp; tmp.v = a[i].v; tmp.w = a[i].w;
while(t--) b.push_back(tmp);
cnt += k[i];
}
else{
int t = al - cnt;
item tmp; tmp.v = a[i].v; tmp.w = a[i].w;
while(t--) b.push_back(tmp);
cnt += al - cnt;
}
//}
if(i + 1 < n)
if(a[i + 1].v != a[i].v) cnt = 0;
}
//print();
//for(int i = 0; i < b.size(); i++) cout<<b[i].w<<" "<<b[i].v<<endl;
for(int i = 1; i < b.size(); i++){
long long v = b[i].v, w = b[i].w;
for(int j = 0; j <= s; j++){
dp[i][j] = dp[i - 1][j];
if(j - w >= 0) dp[i][j] = max(dp[i][j], dp[i - 1][j - w] + v);
}
}
cout<<dp[b.size() - 1][s];
return 0;
}
Compilation message (stderr)
knapsack.cpp: In function 'int main()':
knapsack.cpp:61:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<item>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for(int i = 1; i < b.size(); i++){
| ~~^~~~~~~~~~
# | 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... |