Submission #540562

#TimeUsernameProblemLanguageResultExecution timeMemory
540562ac2huKnapsack (NOI18_knapsack)C++14
49 / 100
143 ms1984 KiB
#include <bits/stdc++.h>
#ifdef DEBUG
#include "../templates/debug.h"
#else 
#define deb(x...)
#endif
using namespace std;
#define int unsigned long long 
int dp[(int)1e5 + 100][(int)2e3 + 10];
signed main() {
	iostream::sync_with_stdio(false);
	cin.tie(nullptr);cout.tie(nullptr);
        int s,n;cin >> s >> n;
        vector<array<int,3>> items(n);
        for(int i = 0;i<n;i++){
                for(int j = 0;j<3;j++)cin >> items[i][j];
        }
        for(int i =0;i<n;i++){
                for(int j = 0;j<=s;j++)
                        dp[i + 1][j] = dp[i][j];
                while(items[i][2] > 0){
                        int lg = log2(items[i][2]);
                        items[i][2] -= (1 << lg);
                        for(int mask = 0;mask<=lg;mask++){
                               for(int j=  1;j<=s;j++){
                                       dp[i + 1][j] = max(dp[i + 1][j], dp[i + 1][j - 1]);
                                        int weight = items[i][1]*(1 << mask);
                                        int price = items[i][0]*(1 << mask);
                                        if(j >= weight)
                                                dp[i + 1][j] = max(dp[i + 1][j], dp[i][j -  weight] + price);
                               }
                        }
                        for(int j = 1;j<=s;j++)
                                dp[i][j] = dp[i + 1][j];

                }
        }
        cout << dp[n][s] << "\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...