AcWing24:剪绳子

Posted 劭兮劭兮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing24:剪绳子相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

问题

原题链接:剪绳子
在这里插入图片描述

JAVA实现

class Solution {
    
    public int maxProductAfterCutting(int length)
    {
		
//		dp[i]表示长度为i时,所具备的最大乘积
		int[] dp = new int[length+1];
		
		for(int i = 2;i<=length;i++) {
//		假设第一刀剪在j的位置上
			for(int j =1;j<=i-1;j++) {
				dp[i] = Math.max(dp[i],Math.max(j*(i-j), j*dp[i-j]));
			}
		}
		return dp[length];
    }
}

以上是关于AcWing24:剪绳子的主要内容,如果未能解决你的问题,请参考以下文章

acwing 25. 剪绳子

LeetCode(剑指 Offer)- 14- I. 剪绳子

LeetCode(剑指 Offer)- 14- I. 剪绳子

剑指offer:剪绳子

《剑指Offer——剪绳子,圆圈中最后剩下的数字》代码

剑指offer--14-II 剪绳子