-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoiknapsack.cpp
59 lines (58 loc) · 871 Bytes
/
oiknapsack.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
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int n;
cout<<"Enter no. of objects:\n";
cin>>n;
int p[n];
int w[n];
for(int i=0;i<n;i++)
{
cout<<"Enter weight of object "<<i+1<<":\n";
cin>>w[i];
cout<<"Enter profit of object "<<i+1<<":\n";
cin>>p[i];
}
int W;
cout<<"Enter weight of sack:\n";
cin>>W;
int m[n+1][W+1];
for(int i=0;i<=n;i++)
{
m[i][0]=0;
}
for(int i=0;i<=W;i++)
{
m[0][i]=0;
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=W;j++)
{
if(j<w[i-1])
{
m[i][j]=m[i-1][j];
}
else
{
m[i][j]=max(m[i-1][j],p[i-1]+m[i-1][j-w[i-1]]);
}
}
}
int res=m[n][W];
cout<<"The max. profit obtained is "<<res<<" with weights ";
for(int i=n;i>0&&res>0;i--)
{
if(res==m[i-1][W])
continue;
else
{
cout<<w[i-1]<<" ";
res-=p[i-1];
W-=w[i-1];
}
}
cout<<endl;
}