Advertisement
yeskendir_sultanov

Knapsack problem - A

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