CF1140D.Minimum Triangulation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a regular polygon with nn vertices labeled from 11 to nn 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 nn ( 3n5003 \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
    

说明/提示

According to Wiki: polygon triangulation is the decomposition of a polygonal area (simple polygon) PP into a set of triangles, i. e., finding a set of triangles with pairwise non-intersecting interiors whose union is PP .

In the first example the polygon is a triangle, so we don't need to cut it further, so the answer is 123=61 \cdot 2 \cdot 3 = 6 .

In the second example the polygon is a rectangle, so it should be divided into two triangles. It's optimal to cut it using diagonal 131-3 so answer is 123+134=6+12=181 \cdot 2 \cdot 3 + 1 \cdot 3 \cdot 4 = 6 + 12 = 18 .

首页