[Nowcoder] 整数分解的最大乘积

Posted immjc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Nowcoder] 整数分解的最大乘积相关的知识,希望对你有一定的参考价值。

给出一个整数n,将n分解为至少两个整数之和,使得这些整数的乘积最大化,输出能够获得的最大的乘积。
例如:
2=1+1,输出1;
10=3+3+4,输出36。
 
思路:
对于整数分解,只有将整数按照3来分解,乘积最大。
对于1,2,3最大结果是0,1,2,对于4最大结果是4。
将原数按照3依次分解相乘,如果最后分解结果小于等于4,则将该数与乘积直接相成。
#include <iostream>
#include <vector>
using namespace std;
 
int deal(int n)
{
    if (n <= 3)
        return n-1;
    int res = 1;
    while (n > 4)
    {
        res *= 3;
        n -= 3;
    }
    res *= n;
    return res;
}
 
int main()
{
    int n;
    while (cin >> n)
    {
        cout << deal(n) << endl;
    }
    return 0;
}

 

以上是关于[Nowcoder] 整数分解的最大乘积的主要内容,如果未能解决你的问题,请参考以下文章

343. 求分解整数的乘积最大化Integer Break

整数划分问题之最大乘积

74-最大乘积

牛客网练习赛18 A 数论/整数划分得到乘积最大/快速乘

最大乘积

Luogu P1075 质因数分解题解