Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum product you can get.
For example, given n = 2, return 1 (2 = 1 + 1); given n = 10, return 36 (10 = 3 + 3 + 4).
Note: You may assume that n is not less than 2 and not larger than 58.
Show Hint难得自己写出来的题目,按照题目的提示,写出了1~10 的结果,然后发现有如下规律 抛出 2, 3 大的数字的最大结果一般可以通过比他小2或者小3的数字得到。 比如说: func(9) = Max(2*(func(7)), 3*(func(6)) )。 采用自底向上的写法可以先把func(7), func(6)的结果计算出来,分别是9 , 12. 所以func(9)的值便是27。base case的话,func(2) = 2, func(3) = 3。如果输入是2 或者3 需要单独处理。如果把它想象成一个递归的过程,递归的终止条件是n = 2 or n = 3, 这个时候不能返回2 或者是3对应的结果1, 2 。 这时候需要返回的是2, 3它本身。
代码:
public int integerBreak(int n) {
if(n <2) return 0;
if(n ==2) return 1;
if(n == 3) return 2;
int [] dp = new int[n+1];
dp[2] = 2;
dp[3] = 3;
for(int i=2;i+2<=n;i++){
dp[i+2] = Math.max(dp[i+2], 2 * dp[i]);
}
for(int i=2;i+3<=n;i++){
dp[i+3] = Math.max(dp[i+3], 3 * dp[i]);
}
return dp[n];
}