Leetcode剑指 Offer 14- I. 剪绳子

原题链接

递归算法

    /**
     * 4可剪成2 * 2, 5可以剪成2 * 3...
     * 
     * 要么剪成长度为2的,要么剪成长度为3的,递归找到乘积
     * 最大的剪法。
      */
    public int cut(int n){
        if(n <= 3){
            return n;
        }
        
        return Math.max( 2 * cut(n - 2), 3 * cut(n - 3));
    }

    public int cuttingRope(int n) {
        if(n == 2) return 1;
        if(n == 3) return 2;
        
        return cut(n);
    }

贪心算法

class Solution {
    public int cuttingRope(int n) {
        if(n <= 3) return n - 1;

        int nums = n / 3;
        int lastLen = n - nums * 3;
        //如果刚好能被3整除,直接返回
        if(lastLen == 0){
            return (int) Math.pow(3, nums);
        }
        // 最后一段长度为1,应该与前一段的3生成4(再剪成2 * 2两段),因为2 * 2 > 3 * 1
        else if(lastLen == 1){
            nums--;
            return (int) Math.pow(3, nums) * 4;
        }

        // 最后一段长度为2
        return (int) Math.pow(3, nums) * 2;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值