• LeetCode1547. 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 <= 106
    1 <= cuts.length <= min(n - 1, 100)
    1 <= cuts[i] <= n - 1
    All the integers in cuts array are distinct.

    二、题解

    class Solution {
    public:
        int minCost(int n, vector<int>& cuts) {
            int m = cuts.size();
            sort(cuts.begin(),cuts.end());
            vector<int> arr(m+2);
            arr[0] = 0;
            for(int i = 1;i <= m;i++){
                arr[i] = cuts[i-1];
            }
            arr[m+1] = n;
            vector<vector<int>> dp(m+2,vector<int>(m+2));
            for(int i = 1;i <= m;i++){
                dp[i][i] = arr[i+1] - arr[i-1];
            }
            for (int l = m - 1; l >= 1; l--) {
    			for (int r = l + 1; r <= m; r++) {
    				int next = INT_MAX;
    				for (int k = l; k <= r; k++) {
    					next = min(next, dp[l][k - 1] + dp[k + 1][r]);
    				}
    				dp[l][r] = arr[r + 1] - arr[l - 1] + next;
    			}
    		}
            return dp[1][m];
        }
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
  • 相关阅读:
    jquery+ajax验证不通过也提交表单问题处理
    xxljob
    RecyclerView的item布局预览显示是一行两块 运行后显示了一行一块,怎么回事
    结合protobuf和socket实现多进程通讯
    内存卡视频误删怎么恢复?4个方法,找回视频!
    Kotlin委托Delegate托管by
    机器学习——特征工程
    你还在凭感觉来优化性能?
    【阿里云-如何实现实名认证】
    使用MapStruct简化entity、dto、dxo之间的属性复制
  • 原文地址:https://blog.csdn.net/weixin_46841376/article/details/136537905