栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

LeetCode-343. Integer Break [C++][Java]

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

LeetCode-343. Integer Break [C++][Java]

LeetCode-343. Integer BreakLevel up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.https://leetcode.com/problems/integer-break/

题目描述

Given an integer n, break it into the sum of k positive integers, where k >= 2, and maximize the product of those integers.

Return the maximum product you can get.

Example 1:

Input: n = 2
Output: 1
Explanation: 2 = 1 + 1, 1 × 1 = 1.

Example 2:

Input: n = 10
Output: 36
Explanation: 10 = 3 + 3 + 4, 3 × 3 × 4 = 36.

Constraints:

2 <= n <= 58

解题思路 【C++】 1.动态规划
class Solution {
public:
    int integerBreak(int n) {
        vector dp(n+1);
        dp[1] = 1;
        for(int i = 2; i <= n; i++) {
            for(int j=1; j 

2. 数学归纳法
class Solution {
public:
    int integerBreak(int n) {
        if (n <= 3) {return n-1;}
        int result = 1;
        if (n % 3 == 1) {
            result = 4;
            n -= 4;
        }
		while (n >= 3) {
            result *= 3;
            n -= 3;
        }
        if (n > 0) {result *= n;}
        return result;
    }
};

【Java】
class Solution {
    public int integerBreak(int n) {
        if (n <= 3) {return n-1;}
        int result = 1;
        if (n % 3 == 1) {
            result = 4;
            n -= 4;
        }
		while (n >= 3) {
            result *= 3;
            n -= 3;
        }
        if (n > 0) {result *= n;}
        return result;
    }
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/763628.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号