Integer Break
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.
Example 1:
Example 2:
Note: You may assume that n is not less than 2 and not larger than 58.
分析
划分型DP
注意这里,可能不拆比拆更好,所以要加入max(j,p[j])比较
Last updated