Skip to content

Latest commit

 

History

History

1039

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Given N, consider a convex N-sided polygon with vertices labelled A[0], A[i], ..., A[N-1] in clockwise order.

Suppose you triangulate the polygon into N-2 triangles.  For each triangle, the value of that triangle is the product of the labels of the vertices, and the total score of the triangulation is the sum of these values over all N-2 triangles in the triangulation.

Return the smallest possible total score that you can achieve with some triangulation of the polygon.

 

Example 1:

Input: [1,2,3]
Output: 6
Explanation: The polygon is already triangulated, and the score of the only triangle is 6.

Example 2:

Input: [3,7,4,5]
Output: 144
Explanation: There are two triangulations, with possible scores: 3*7*5 + 4*5*7 = 245, or 3*4*5 + 3*4*7 = 144.  The minimum score is 144.

Example 3:

Input: [1,3,1,4,1,5]
Output: 13
Explanation: The minimum score triangulation has score 1*1*3 + 1*1*4 + 1*1*5 + 1*1*1 = 13.

 

Note:

  1. 3 <= A.length <= 50
  2. 1 <= A[i] <= 100

Companies:
Uber

Related Topics:
Dynamic Programming

Solution 1. DP Top-down

// OJ: https://leetcode.com/problems/minimum-score-triangulation-of-polygon/
// Author: github.com/lzl124631x
// Time: O(N^3)
// Space: O(N^2)
// Ref: https://leetcode.com/problems/minimum-score-triangulation-of-polygon/discuss/286753/C%2B%2B-with-picture
class Solution {
private:
    int dp[50][50] = {0};
    int minScoreTriangulation(vector<int>& A, int i, int j) {
        if (j - i < 2) return 0;
        if (dp[i][j]) return dp[i][j];
        int ans = INT_MAX;
        for (int k = i + 1; k < j; ++k) {
            ans = min(ans, minScoreTriangulation(A, i, k) + A[i] * A[j] * A[k] + minScoreTriangulation(A, k, j));
        }
        return dp[i][j] = ans;
    }
public:
    int minScoreTriangulation(vector<int>& A) {
        return minScoreTriangulation(A, 0, A.size() - 1);
    }
};

Solution 2. DP Bottom-up

// OJ: https://leetcode.com/problems/minimum-score-triangulation-of-polygon/
// Author: github.com/lzl124631x
// Time: O(N^3)
// Space: O(N^2)
class Solution {
public:
    int minScoreTriangulation(vector<int>& A) {
        int N = A.size();
        vector<vector<int>> dp(N, vector<int>(N, 0));
        for (int len = 3; len <= N; ++len) {
            for (int i = 0; i <= N - len; ++i) {
                int val = INT_MAX;
                for (int k = i + 1; k < i + len - 1; ++k) {
                    val = min(val, dp[i][k] + dp[k][i + len - 1] + A[i] * A[i + len - 1] * A[k]);
                }
                dp[i][i + len - 1] = val;
            }
        }
        return dp[0][N - 1];
    }
};