DP36 如何切出最大长度乘积 Maximum Product Cutting @geeksforgeeks

2014-11-24 07:27:24 · 作者: · 浏览: 0

Given a rope of length n meters, cut the rope in different parts of integer lengths in a way that maximizes product of lengths of all parts. You must make at least one cut. Assume that the length of rope is more than 2 meters.

Examples:

Input: n = 2
Output: 1 (Maximum obtainable product is 1*1)

Input: n = 3
Output: 2 (Maximum obtainable product is 1*2)

Input: n = 4
Output: 4 (Maximum obtainable product is 2*2)

Input: n = 5
Output: 6 (Maximum obtainable product is 2*3)

Input: n = 10
Output: 36 (Maximum obtainable product is 3*3*4)

1) Optimal Substructure:
This problem is similar to Rod Cutting Problem. We can get the maximum product by making a cut at different positions and comparing the values obtained after a cut. We can recursively call the same function for a piece obtained after a cut.

Let maxProd(n) be the maximum product for a rope of length n. maxProd(n) can be written as following.

maxProd(n) = max(i*(n-i), maxProdRec(n-i)*i) for all i in {1, 2, 3 .. n}

2) Overlapping Subproblems
Following is simple recursive C++ implementation of the problem. The implementation simply follows the recursive structure mentioned above.


A Tricky Solution:
If we see some examples of this problems, we can easily observe following pattern.
The maximum product can be obtained be repeatedly cutting parts of size 3 while size is greater than 4, keeping the last part as size of 2 or 3 or 4. For example, n = 10, the maximum product is obtained by 3, 3, 4. For n = 11, the maximum product is obtained by 3, 3, 3, 2. Following is C++ implementation of this approach.


package DP;

public class MaxProductCutting {

	public static void main(String[] args) {
		System.out.println(maxProdRec(10));
		System.out.println(maxProdDP(10));
		System.out.println(maxProdTrick(10));
	}
	
	public static int maxProdRec(int n){
		if(n==0 || n==1){
			return 0;
		}
		int max = 0;
		for(int i=1; i
  
    4){		// Keep removing parts of size 3 while n is greater than 4
			n -= 3;
			res *= 3;		// Keep multiplying 3 to res
		}
		return n*res;		// The last part multiplied by previous parts
	}

}