Advertisement
milon34

0/1 knapsack(dp solution)

Jan 14th, 2023 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long int
  4. ll n, w;
  5. const ll mx = 1e5 + 5;
  6. ll dp[105][mx];
  7. ll weight[105], price[105];
  8. ll solve(ll i, ll cur_wg) {
  9.   if (i > n) {
  10.     return 0;
  11.   }
  12.   if (dp[i][cur_wg] != -1) {
  13.     return dp[i][cur_wg];
  14.   }
  15.   ll res1 = 0, res2 = 0;
  16.   res1 = solve(i + 1, cur_wg);
  17.   if (cur_wg + weight[i] <= w) {
  18.     res2 = price[i] + solve(i + 1, cur_wg + weight[i]);
  19.   }
  20.   return dp[i][cur_wg] = max(res1, res2);
  21. }
  22. int main() {
  23.   ios_base::sync_with_stdio(false);
  24.   cin.tie(0);
  25.   cout.tie(0);
  26.   memset(dp, -1, sizeof(dp));
  27.   cin >> n >> w;
  28.   for (ll i = 1; i <= n; i++) {
  29.     cin >> weight[i] >> price[i];
  30.   }
  31.   cout << solve(1, 0) << "\n";
  32.   return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement