1547.Minimum Cost to Cut a Stick === ###### tags: `Hard`,`Array`,`Sorting`,`DP` [1547. Minimum Cost to Cut a Stick](https://leetcode.com/problems/minimum-cost-to-cut-a-stick/) ### 題目描述 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: ![](https://assets.leetcode.com/uploads/2020/07/21/statement.jpg) 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:** ![](https://assets.leetcode.com/uploads/2020/07/23/e1.jpg) ``` 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: ``` ![](https://assets.leetcode.com/uploads/2020/07/21/e11.jpg) ``` 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**. ### 解答 #### C# ```csharp= public int MinCost(int n, int[] cuts) { var sorted = cuts.OrderBy(n => n).ToArray(); int size = cuts.Length + 1; (int length, int cost)[][] dp = CreateTable(size); dp[0][0] = (sorted[0], 0); dp[0][size-1] = (n - sorted[size-2], 0); for (int i = 1; i < size-1; i++) { dp[0][i] = (sorted[i] - sorted[i-1], 0); } for (int row = 1; row < size; row++) { for (int j = row; j < size; j++) { int length = dp[row-1][j-1].length +dp[0][j].length; int cost = length + GetMinCost(row, j); dp[row][j] = (length, cost); } } int result = dp[size-1][size-1].cost; return result; int GetMinCost(int row ,int j) { int minCost = int.MaxValue; for (int r = row - 1; r >= 0; r--) { var cost = dp[r][r + j -row].cost + dp[row-r-1][j].cost; minCost = Math.Min(minCost, cost); } return minCost; } } private (int length, int cost)[][] CreateTable(int size) { var table = new (int length, int cost)[size][]; for(int i = 0; i < size; i++) { table[i] = new (int length, int cost)[size]; } return table; } ``` >[name=Jim][time=May 30, 2023] 還沒整理 Code,能跑過而已 ### Reference [回到題目列表](https://hackmd.io/@Marsgoat/leetcode_every_day)