Submission #1286266

#TimeUsernameProblemLanguageResultExecution timeMemory
1286266SojuKnapsack (NOI18_knapsack)C++20
37 / 100
1029 ms584 KiB
#pragma GCC optimize("O3,inline,unroll-loops") #include <bits/stdc++.h> using namespace std; using ll = long long; #define all(v) (v).begin(), (v).end() #define rall(v) (v).begin(), (v).end() #define debug cerr << "[DEBUG] " const char wp = ' '; const char nl = '\n'; void kebin() { int s, n; cin >> s >> n; vector<tuple<int, int, int>> arr(n); for (auto &[a, b, c] : arr) { cin >> a >> b >> c; // {value, weight, number (or copies)} } vector<ll> dp(s+1); for (auto [val, wei, cnt] : arr) { for (int i = 1; i <= cnt; i++) { for (int w = s; w >= wei; w--) { dp[w] = max(dp[w], dp[w-wei] + val); } } } cout << *max_element(all(dp)) << nl; } signed main() { cin.tie(0)->sync_with_stdio(false); int t = 1; // cin >> t; while (t--) kebin(); }
#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...