1039. Minimum Score Triangulation of Polygon
Last updated
Last updated
**Input:** values = [1,2,3]
**Output:** 6
**Explanation:** The polygon is already triangulated, and the score of the only triangle is 6.**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.**Input:** values = [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.