题解 | #剪绳子#

剪绳子

http://www.nowcoder.com/practice/57d85990ba5b440ab888fc72b0751bf8

参考大佬的动态规划算法,从下向上计算

public class Solution {
    public int cutRope(int target) {
        if(target<2)
            return 0;
        if(target == 2)
            return 1;
        if(target == 3)
            return 2;
        int products[] = new int[target+1];
        
        products[0] = 0;
        products[1] = 1;
        products[2] = 2;
        products[3] = 3;
        
        int ans = 0;
        for(int i=4;i<target+1;i++){
            for(int j=1;j<i/2+1;j++){
                ans = Math.max(products[j]*products[i-j], ans);
            }
            products[i] = ans;
        }
        ans = products[target];
        return ans;
    }
}
全部评论

相关推荐

10-21 23:48
蚌埠坦克学院
csgq:可能没hc了 昨天一面完秒挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务