-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0-1KnapsackProblem.cpp
52 lines (43 loc) · 1.06 KB
/
0-1KnapsackProblem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
//Function to return max value that can be put in knapsack of capacity W.
int knapSack(int W, int wt[], int val[], int n) {
if (W < 0)
return INT_MIN;
if (n < 0 || W == 0)
return 0;
int in = val[n] + knapSack(W - wt[n], wt, val, n - 1);
int ex = knapSack(W, wt, val, n - 1);
return max (in, ex);
}
};
// { Driver Code Starts.
int main()
{
//taking total testcases
int t;
cin >> t;
while (t--)
{
//reading number of elements and weight
int n, w;
cin >> n >> w;
int val[n];
int wt[n];
//inserting the values
for (int i = 0; i < n; i++)
cin >> val[i];
//inserting the weights
for (int i = 0; i < n; i++)
cin >> wt[i];
Solution ob;
//calling method knapSack()
cout << ob.knapSack(w, wt, val, n) << endl;
}
return 0;
} // } Driver Code Ends