Given a rod of length n inches and an array of prices that contains prices of all pieces of size smaller than n. Determine the maximum value obtainable by cutting up the rod and selling the pieces. For example, if length of the rod is 8 and the values of different pieces are given as following, then the maximum obtainable value is 22 (by cutting in two pieces of lengths 2 and 6)
length | 1 2 3 4 5 6 7 8
--------------------------------------------
price | 1 5 8 9 10 17 17 20
And if the prices are as following, then the maximum obtainable value is 24 (by cutting in eight pieces of length 1)
length | 1 2 3 4 5 6 7 8
--------------------------------------------
price | 3 5 8 9 10 17 17 20
Following is simple recursive implementation of the Rod Cutting problem. The implementation simply follows the recursive structure mentioned above.
C#
using System;
class GFG {
static int cutRod( int [] price, int n)
{
if (n <= 0)
return 0;
int max_val = int .MinValue;
for ( int i = 0; i < n; i++)
max_val = Math.Max(max_val, price[i] + cutRod(price, n - i - 1));
return max_val;
}
public static void Main()
{
int [] arr = new int [] { 1, 5, 8, 9, 10, 17, 17, 20 };
int size = arr.Length;
Console.WriteLine( "Maximum Obtainable Value is " + cutRod(arr, size));
}
}
|
Output:
Maximum Obtainable Value is 22
Considering the above implementation, following is recursion tree for a Rod of length 4.
cR() ---> cutRod()
cR(4)
/ /
/ /
cR(3) cR(2) cR(1) cR(0)
/ | / |
/ | / |
cR(2) cR(1) cR(0) cR(1) cR(0) cR(0)
/ | |
/ | |
cR(1) cR(0) cR(0) cR(0)
/
/
CR(0)
In the above partial recursion tree, cR(2) is being solved twice. We can see that there are many subproblems which are solved again and again. Since same subproblems are called again, this problem has Overlapping Subproblems property. So the Rod Cutting problem has both properties (see this and this) of a dynamic programming problem. Like other typical Dynamic Programming(DP) problems, recomputations of same subproblems can be avoided by constructing a temporary array val[] in bottom up manner.
C#
using System;
class GFG {
static int cutRod( int [] price, int n)
{
int [] val = new int [n + 1];
val[0] = 0;
for ( int i = 1; i <= n; i++) {
int max_val = int .MinValue;
for ( int j = 0; j < i; j++)
max_val = Math.Max(max_val,
price[j] + val[i - j - 1]);
val[i] = max_val;
}
return val[n];
}
public static void Main()
{
int [] arr = new int [] { 1, 5, 8, 9, 10, 17, 17, 20 };
int size = arr.Length;
Console.WriteLine( "Maximum Obtainable Value is " + cutRod(arr, size));
}
}
|
Output:
Maximum Obtainable Value is 22
Please refer complete article on Cutting a Rod | DP-13 for more details!
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
25 Jun, 2021
Like Article
Save Article