343. 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.

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.

DP.

product[i] = max(product[k] * (i-k), k * (i-k); k is [1...i)
public class Solution {
    public int integerBreak(int n) {
        if(n== 0) return 0;
        int[] product = new int[n+1];
        product[1]= 1;
        for(int i=1; i<=n;i++){
            for(int k=1; k<i;k++){  // <i?
                product[i] = Math.max(product[i], Math.max( k * (i-k), product[k] * (i-k)));
            }
        } 
        return product[n];    
    }
}

results matching ""

    No results matching ""