# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
729266 | PVSekhar | Knapsack (NOI18_knapsack) | C++14 | 1 ms | 468 KiB |
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;
#define ll long long
const ll MOD = 1000000007;
int main()
{
ll n,s;
cin>>s>>n;
vector<ll> dp(s+1,0);
map<ll,vector<pair<ll,ll>>> store;
ll v,w,k;
for (ll i = 0; i < n; i++)
{
cin>>v>>w>>k;
store[w].push_back({v,k});
}
for (auto st:store)
{
sort(st.second.begin(),st.second.end());
reverse(st.second.begin(),st.second.end());
}
vector<pair<int,int>> final_store;
ll ind=0,x=0;
for (ll i = 1; i <= s; i++)
{
ind=0;
if(store[i].size()==0)continue;
for (ll j = 1; j <= (s/i); j++)
{
if(ind >= store[i].size()) break;
if(! store[i][ind].second) ind++;
if(ind >= store[i].size()) break;
store[i][ind].second--;
final_store.push_back({i,store[i][ind].first});
}
}
for(auto i : final_store){
for(int j = s; j >= i.first; j--) dp[j] = max(dp[j],dp[j-i.first]+i.second);
}
cout<<dp[s]<<endl;
return 0;
}
Compilation message (stderr)
# | 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... |