Submission #1185409

#TimeUsernameProblemLanguageResultExecution timeMemory
1185409GoBananas69Knapsack (NOI18_knapsack)C++20
17 / 100
1 ms328 KiB
#include <algorithm> #include <iostream> #include <vector> using namespace std; typedef long long ll; int main() { cin.tie(0)->sync_with_stdio(0); ll s, n; cin >> s >> n; if (s < 0 || n <= 0) { cout << 0 << '\n'; return 0; } vector<ll> v(1, 0), w(1, 0); for (ll i = 0; i < n; ++i) { ll a, b, c; //v, w, k cin >> a >> b >> c; c = min(s, c); ll k = 1; for (ll k = 1; k * b <= s && k <= c; k *= 2) { w.push_back(k * b); v.push_back(k * a); } } n = v.size() - 1; if (n == 0) { cout << 0 << '\n'; return 0; } vector<vector<ll>> dp(2, vector<ll>(s + 1, 0)); for (ll i = 1; i <= n; ++i) { for (ll j = 0; j <= s; ++j) { if (w[i] > j) { dp[1][j] = dp[0][j]; } else { dp[1][j] = max(dp[0][j], v[i] + dp[0][j - w[i]]); } } swap(dp[1], dp[0]); } cout << dp[0][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...