2025-09-29 Daily Challenge

Today I have done leetcode's September LeetCoding Challenge with cpp.

September LeetCoding Challenge 29

Description

Minimum Score Triangulation of Polygon

You have a convex n-sided polygon where each vertex has an integer value. You are given an integer array values where values[i] is the value of the ith vertex in clockwise order.

Polygon triangulation is a process where you divide a polygon into a set of triangles and the vertices of each triangle must also be vertices of the original polygon. Note that no other shapes other than triangles are allowed in the division. This process will result in n - 2 triangles.

You will triangulate the polygon. For each triangle, the weight of that triangle is the product of the values at its vertices. The total score of the triangulation is the sum of these weights over all n - 2 triangles.

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

 

Example 1:

Input: values = [1,2,3]

Output: 6

Explanation: The polygon is already triangulated, and the score of the only triangle is 6.

Example 2:

Input: values = [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: values = [1,3,1,4,1,5]

Output: 13

Explanation: The minimum score triangulation is 1*1*3 + 1*1*4 + 1*1*5 + 1*1*1 = 13.

 

Constraints:

  • n == values.length
  • 3 <= n <= 50
  • 1 <= values[i] <= 100

Solution

class Solution {
  int dp[50][50] = {};
public:
  int minScoreTriangulation(vector<int>& values, int i = 0, int j = 0, int result = 0) {
    if(!j) j = values.size() - 1;
    if(dp[i][j]) return dp[i][j];
    for(int k = i + 1; k < j; ++k) {
      if(!result) result = INT_MAX;
      result = min(result, minScoreTriangulation(values, i, k) + values[i] * values[j] * values[k] + minScoreTriangulation(values, k, j));
    }
    dp[i][j] = result;
    return dp[i][j];
  }
};

// Accepted
// 94/94 cases passed (0 ms)
// Your runtime beats 100 % of cpp submissions
// Your memory usage beats 98.26 % of cpp submissions (10.4 MB)