Submission #528312

#TimeUsernameProblemLanguageResultExecution timeMemory
528312theysoldtheworldKnapsack (NOI18_knapsack)C++14
73 / 100
1042 ms3916 KiB
#include <bits/stdc++.h> using namespace std; struct Item { long long v , w , k; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int S , N; cin >> S >> N; vector<Item> a(N); for (int i = 0 ; i < N ; i++) { cin >> a[i].v >> a[i].w >> a[i].k; a[i].k = min(a[i].k , S * 1LL); } vector<long long> dp(S + 1); vector<bool> Reachable(S + 1); Reachable[0] = true; for (int i = 0 ; i < N ; i++) { for (int how = 0 ; how < a[i].k ; how++) { for (int j = S ; j >= 0 ; j--) { if (j + a[i].w <= S && Reachable[j]) { Reachable[a[i].w + j] = true; dp[a[i].w + j] = max(dp[a[i].w + j] , dp[j] + a[i].v); } } } } cout << *max_element(dp.begin(),dp.end()) << '\n'; return 0; }
#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...