306061: CF1140D. Minimum Triangulation
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Minimum Triangulation
题意翻译
给出一个逆时针顶点标号为 $1\sim n(n\leq 500)$ 的正多边形,一个三角形划分的权值是三角形三个顶点的编号乘积之和。 输出一个最小的权值。题目描述
You are given a regular polygon with $ n $ vertices labeled from $ 1 $ to $ n $ in counter-clockwise order. The triangulation of a given polygon is a set of triangles such that each vertex of each triangle is a vertex of the initial polygon, there is no pair of triangles such that their intersection has non-zero area, and the total area of all triangles is equal to the area of the given polygon. The weight of a triangulation is the sum of weigths of triangles it consists of, where the weight of a triagle is denoted as the product of labels of its vertices. Calculate the minimum weight among all triangulations of the polygon.输入输出格式
输入格式
The first line contains single integer $ n $ ( $ 3 \le n \le 500 $ ) — the number of vertices in the regular polygon.
输出格式
Print one integer — the minimum weight among all triangulations of the given polygon.
输入输出样例
输入样例 #1
3
输出样例 #1
6
输入样例 #2
4
输出样例 #2
18