LeetCode:Integer Break

Integer Break

 
Total Accepted: 8189  Total Submissions: 20135  Difficulty: Medium

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.

Hint:

  1. There is a simple O(n) solution to this problem.
  2. You may check the breaking results of n ranging from 7 to 10 to discover the regularities.
Hide Tags
  Dynamic Programming Math





















思路:

num   sum   product

  1 = 0+1           0

  2 = 1+1           1

  3 = 1+2           2

  4 = 2+2           4

  5 = 2+3           6

  6 = 3+3           9

  7 = 3+4         12

  8 = 3+3+2    18

  9 = 3+3+3     27

10 = 3+3+4    36


通过观察可以看到:从5开始最大乘积数都是由2 3组成的(4可以拆分2*2);


因此解法一:

public class Solution {  
    public int integerBreak(int n) {  
        if(n==2) return 1;  
        if(n==3) return 2;  
          
        int res = 1;  
        while(n>2) { //看n可以拆分出多少个3  
            res *= 3;  
            n -= 3;  
        }  
        if(n==0) return res; //n可以整除3,res就是各个3相乘  
        if(n==1) return (res/3)*4; // 余1,把其中的一个3加1变为4再相乘  
        if(n==2) return res*2; // 余2,则可直接把2与res相乘  
          
        return res;  
    }  
}


动规解法:

由4以后的数字规律可以得出状态转移方程:

dp[i] = 3*dp[i-3],i>=7

因此解法二:

c++ code:

class Solution {  
public:  
    int integerBreak(int n) {  
          
        vector<int> dp{0,0,1,2,4,6,9};  
        for(int i=7;i<=n;i++)   
            dp.push_back(3*dp[i-3]);  
              
        return dp[n];  
    }  
};


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值