Advertisement
yeskendir_sultanov

Knapsack

Feb 9th, 2025
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int s, n;
  7.     cin >> s >> n;
  8.     int w[n];
  9.     for (int i= 0; i < n; ++i) {
  10.         cin >> w[i];
  11.     }
  12.  
  13.     bool dp[s + 1] = {};
  14.     dp[0] = true;
  15.     int res = 0;
  16.  
  17.     for (int i = 0; i < n; ++i) {
  18.         for (int x = s; x >= 0; --x) {
  19.             if (dp[x] && x + w[i] <= s) {
  20.                 dp[x + w[i]] = true;
  21.                 res = max(res, x + w[i]);
  22.             }
  23.         }
  24.     }
  25.  
  26.     cout << res;
  27.     return 0;
  28. }
  29.  
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement