-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRodCuttingProblem.cpp
More file actions
43 lines (40 loc) · 916 Bytes
/
RodCuttingProblem.cpp
File metadata and controls
43 lines (40 loc) · 916 Bytes
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
#include<bits/stdc++.h>
using namespace std;
int RodCutting(int len[], int price[], int totalLength, int n)
{
int dp[n+1][totalLength+1];
for(int i=0;i<n+1;i++)
{
for(int j=0;j<totalLength+1;j++)
{
if(i==0 || j==0)
{
dp[i][j] = 0;
}
}
}
for(int i=1;i<n+1;i++)
{
for(int j=1;j<totalLength+1;j++)
{
if(len[i-1]<=j)
{
dp[i][j] = max(price[i-1] + dp[i][j-len[i-1]] , dp[i-1][j]);
} else {
dp[i][j] = dp[i-1][j];
}
}
}
return dp[n][totalLength];
}
int main() {
int price[] = { 1, 5, 8, 9, 10, 17, 17, 20 };
int n = sizeof(price)/sizeof(price[0]);
int len[n];
for(int i=0;i<n;i++)
{
len[i] = i+1;
}
int totalLength = n;
cout<<RodCutting(len, price, totalLength, n);
}