Last Updated: 21 Mar, 2021

Minimum Score

Moderate
Asked in companies
UberPrecily AINavi Technologies

Problem statement

You are given an ‘N’ sided polygon. Every vertex of the polygon is assigned a value. The vertices are given in the form of an array of ‘N’ integers in clockwise direction.

You need to divide the polygon into ‘N - 2’ triangles. Each triangle has a triangle value. The triangle value is calculated by finding the product of its vertices.

Now, you need to find the minimum total triangle score. The total triangle score is the sum of the triangle scores of all the possible triangles.

Note:
Note that a polygon can be divided into triangles in more than one way. You need to print the minimum sum of triangle values of all the triangles created.
Example :
Given 'N' = 4, Array = [4, 3, 5, 2], the possible scores for these two triangle score are: (3 * 2 * 5) + (3 * 2 * 4) = 54 and (4 * 2 * 5) + (4 * 3 * 5) = 100.
The minimum of these two triangle scores is 54. So you need to print 54.

Example

Input Format:
The first line contains an integer ‘T’ which denotes the number of test cases.

The first line of each test case contains a single integer ‘N’, denoting the vertices of the polygon.

The next line contains ‘N’ space-separated integers denoting the value of the vertices of the polygon.
Output Format:
For each test case, you need to return the minimum triangle score possible from all triangles.

Print the output of each test case in a separate line.
Note:
You don’t need to print anything; It has already been taken care of. Just implement the given function.
Constraints:
1 <= T <= 10
3 <=  N  <= 50
1 <= ARR[i] <= 100

Where 'ARR[i]' denotes the Array elements that represent the sides of the polygon.

Time limit: 1 sec

Approaches

01 Approach

We can solve this problem by dividing it into smaller subproblems using recursion. We can divide the polygon recursively into three parts - one triangle and two sub polygons and we have to find the optimal way to divide this so that we will get a minimum triangle score. Let us say the starting and ending index of the given array is ‘i’ and ‘j’ , and ‘k’ is any index between ‘i+1’ and ‘j-1’  then we can divide this polygon into two polygons  A[ i…….k] + A[ k…….j] and a triangle formed by vertices i, j and k.

 

We will recursively divide all the polygons into sub polygons for all possible values of ‘ k ’ and return the minimum triangle score obtained.

 

The steps are as follows:

 

  • Let triangleScore('ARR', ‘i’, ‘j’) be our recursive function where ‘i’ and ‘j’ are the starting and ending index of vertices of the polygon.
  • If there are less than three vertices, we can not make a triangle from them so return 0.
  • Run a loop ‘k’ : ‘i’ + 1 to ‘j’ - 1
    • Return minimum value of ( INT_MAX ,triangleScore('ARR', ‘i’, 'k') + triangleScore('ARR', ‘k’, ‘j’) + triangleValue of triangle formed by vertices ‘i’, ‘j’ and 'k'.)

02 Approach

We can overcome the problem of solving for the same subarrays multiple times as we had to do in recursion. 

 

Take an example: Array = [1, 2, 3, 4, 5]

 

This would have two quadrilaterals that need to be further solved: [1, 2, 3, 4] and [2, 3, 4, 5].

 

[2, 3, 4] in both these quadrilaterals are common, so we can store its result to use them later.

 

We will simply use a 2-D array ‘DP’ that would store our previous results and would be visited in order to reduce the calculation time for the subproblems.

 

The rest of the approach would be the same as in recursion.

 

The steps are as follows:

 

  • Create a recursive function triangleScore('ARR', ‘i’, ‘j’).
  • Create a 2D vector ‘DP’ to store results of the subproblems (initialize all values to -1).
  • If ‘DP’[ i ][ j ] is not equal to ‘-1’ return ‘DP’[ i ][ j ].
  • Otherwise
    • If ‘j’ < ‘i’ + 2
      • ‘DP’[ i ][ j ] = 0.
    • Else
      • Run a loop ‘k’ : ‘i' + 1 to ‘j’ - 1
      • = INT_MAX
      • ‘DP[i][j]’ = minimum value of (INT_MAX, triangleScore('ARR', ‘i’, ‘k’) + triangleScore('ARR', ‘k’, ‘j’) + triangleValue of triangle formed by vertices ‘i', ‘j’ and ‘k’).
  • Return ‘DP’[ i ][ j ].

03 Approach

The idea is to take each pair of vertices possible and then with those fixed, find a vertex in between such that the polygon on the left and right side of it is of min score.

 

The steps are as follows:

 

  • Create a 2d ‘DP’ array that will store the minimum triangulation score of the polygon with vertices starting from ‘i’..'j' and there is an edge between ‘i’ and ‘j’
  • start swiping each vertex using index 'i' and use the index 'j' to keep the other end fixed:
    • This ‘i’ and ‘j’ edge will then be evaluated with every other vertex in between them by making a triangle with it and checking the score of the left and right side of the remaining polygon.
  • Return the minimum triangle score.