Maximum Ribbon Cut
Let's solve the Maximum Ribbon Cut problem using Dynamic Programming.
Statement
Given a ribbon of length n
and a set of possible sizes
, cut the ribbon in sizes
such that n
is achieved with the maximum number of pieces.
You have to return the maximum number of pieces that can make up n
by using any combination of the available sizes
. If the n
can’t be made up, return -1
, and if n
is 0
, return 0
.
Let’s say, we have a ribbon of length and possible sizes as . The ribbon length can be obtained by cutting it into one piece of length and another of length (as ), or, into one piece of length and two pieces of length (as ). As we wish to maximize the number of pieces, we choose the second option, cutting the ribbon into pieces.
Constraints:
-
sizes.length
-
sizes[i]
-
n
Examples
No. | n | sizes | Count of Pieces |
1 | 5 | [1, 2, 3] | 5 |
2 | 13 | [5, 3, 8] | 3 |
3 | 3 | [5] | -1 |
Try it yourself
Implement your solution in the following playground:
int CountRibbonPieces(int n, std::vector<int> sizes){// write your code herereturn -1;}
Note: If you clicked the “Submit” button and the code timed out, this means that your solution needs to be optimized in terms of running time.
Hint: Use dynamic programming and see the magic.
Solution
We will first explore the naive recursive solution to this problem and then see how it can be improved using the Unbounded Knapsack dynamic programming pattern.
Naive approach
The naive approach is to generate all possible combinations of given ribbon sizes such that in each combination, the sum of ribbon sizes is equal to n
. This can be achieved by recursively reducing the current ribbon length by available sizes until it reaches 0
. From these combinations, choose the one with the maximum number of ribbon pieces and return that number. If the sum of any combinations is not equal to n
then return -1
.
For example, we have a ribbon of length . Given below is the possible ribbon sizes:
- n:
- sizes:
Let’s look at all the possible combinations of ribbon sizes whose sum is equal to the n
and we will select the maximum count of ribbon sizes out of them, that is :
- =>
- =>
Below is the recursion tree for the above example, where at each level i
, the left subtree indicates the inclusion of the sizes[i]
, and the right subtree indicates the exclusion of the sizes[i]
.