LeetCode 1547 Minimum Cost to Cut a Stick (推荐 区间dp)

Given a wooden stick of length n units. The stick is labelled from 0 to n. For example, a stick of length 6 is labelled as follows:

Given an integer array cuts where cuts[i] denotes a position you should perform a cut at.

You should perform the cuts in order, you can change the order of the cuts as you wish.

The cost of one cut is the length of the stick to be cut, the total cost is the sum of costs of all cuts. When you cut a stick, it will be split into two smaller sticks (i.e. the sum of their lengths is the length of the stick before the cut). Please refer to the first example for a better explanation.

Return the minimum total cost of the cuts.

Example 1:

Input: n = 7, cuts = [1,3,4,5]
Output: 16
Explanation: Using cuts order = [1, 3, 4, 5] as in the input leads to the following scenario:

The first cut is done to a rod of length 7 so the cost is 7. The second cut is done to a rod of length 6 (i.e. the second part of the first cut), the third is done to a rod of length 4 and the last cut is to a rod of length 3. The total cost is 7 + 6 + 4 + 3 = 20.
Rearranging the cuts to be [3, 5, 1, 4] for example will lead to a scenario with total cost = 16 (as shown in the example photo 7 + 4 + 3 + 2 = 16).

Example 2:

Input: n = 9, cuts = [5,6,1,4,2]
Output: 22
Explanation: If you try the given cuts ordering the cost will be 25.
There are much ordering with total cost <= 25, for example, the order [4, 6, 5, 2, 1] has total cost = 22 which is the minimum possible.

Constraints:

  • 2 <= n <= 10^6
  • 1 <= cuts.length <= min(n - 1, 100)
  • 1 <= cuts[i] <= n - 1
  • All the integers in cuts array are distinct.

题目链接:https://leetcode.com/problems/minimum-cost-to-cut-a-stick/

题目大意:一根长度n的木条,有n个切割点,切割顺序自定,每次切割的花费为当前切割的木条的长度,求切割的最小总代价

题目分析:正着做感觉挺麻烦的,不妨反过来考虑,因为不管怎么切,最终的状态是确定的,故可将问题转化为将n+1段木条合并,每次合并的代价为两部分的和,求全部合并后的最小代价,这则是一个典型的区间dp问题,dp[i][j]表示合并区间i到j的最小代价

15ms,时间击败79.89%

class Solution {
    
    public int min3(int a, int b, int c) {
        if (a <= b && a <= c) {
            return a;
        } else if (b <= a && b <= c) {
            return b;
        }
        return c;
    }
    
    public int minCost(int n, int[] cuts) {
        int m = cuts.length + 1;
        int[][] dp = new int[m][m];
        int[] sum = new int[m];
        Arrays.sort(cuts);
        sum[0] = cuts[0];
        for (int i = 1; i < cuts.length; i++) {
            sum[i] = sum[i - 1] + cuts[i] - cuts[i - 1];
        }
        sum[cuts.length] = n;
        dp[0][1] = sum[1];
        for (int i = 1; i + 1 < m; i++) {
            dp[i][i + 1] = sum[i + 1] - sum[i - 1];
        }
        for (int l = 2; l < m; l++) {
            for (int i = 0; i + l < m; i++) {
                int j = i + l;
                int segSum = i == 0 ? sum[j] : sum[j] - sum[i - 1];
                dp[i][j] = Integer.MAX_VALUE;
                for (int k = i + 1; k < j; k++) {     
                    dp[i][j] = min3(dp[i][j], dp[i][k] + dp[k + 1][j] + segSum, dp[i][k - 1] + dp[k][j] + segSum);
                }
            }
        }
        return dp[0][m - 1];
    }
}

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值