-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknapSack_DP.cpp
86 lines (78 loc) · 1.83 KB
/
knapSack_DP.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <bits/stdc++.h>
using namespace std;
// Recursive Approch
int KnapSack_REC(int weight[], int profit[], int W, int n)
{
if (W == 0 || n == 0)
{
return 0;
}
if (weight[n - 1] <= W)
{
return max(profit[n - 1] + KnapSack_REC(weight, profit, W - weight[n - 1], n - 1), KnapSack_REC(weight, profit, W, n - 1));
}
else if (weight[n - 1] > W)
{
return KnapSack_REC(weight, profit, W, n - 1);
}
}
// Memoization
vector<vector<int>> t(100, vector<int>(100, -1));
int KnapSack_DP(int weight[], int profit[], int W, int n)
{
if (W == 0 || n == 0)
{
return 0;
}
if (t[n][W] != -1)
{
return t[n][W];
}
if (weight[n - 1] <= W)
{
return t[n][W] = max(profit[n - 1] + KnapSack_DP(weight, profit, W - weight[n - 1], n - 1), KnapSack_DP(weight, profit, W, n - 1));
}
else if (weight[n - 1] > W)
{
return t[n][W] = KnapSack_DP(weight, profit, W, n - 1);
}
}
// Top Down Approch
int KnapSack_DP2(int weight[], int profit[], int W, int n)
{
int tt[n + 1][W + 1];
for (int i = 0; i < n + 1; i++)
{
for (int j = 0; j < W + 1; j++)
{
if (i == 0 || j == 0)
{
tt[i][j] = 0;
}
}
}
for (int i = 1; i < n + 1; i++)
{
for (int j = 1; j < W + 1; j++)
{
if (weight[i - 1] <= W)
{
tt[i][j] = max(profit[i - 1] + tt[i - 1][j - weight[i - 1]], tt[i - 1][j]);
}
else if (weight[i - 1] > W)
{
tt[i][j] = tt[i - 1][j];
}
}
}
return tt[n][W];
}
int main()
{
int profit[] = {60, 100, 120};
int weight[] = {10, 20, 30};
int W = 50;
int n = 3;
cout << KnapSack_DP2(weight, profit, W, n);
return 0;
}