DAY15.2 D. Minimum Triangulation

DAY15.2 D. Minimum Triangulation

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Input
The first line contains single integer nn (3≤n≤5003≤n≤500) — the number of vertices in the regular polygon.

Output
Print one integer — the minimum weight among all triangulations of the given polygon.

Examples
inputCopy
3
outputCopy
6
inputCopy
4
outputCopy
18
Note
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 1⋅2⋅3=61⋅2⋅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 1−31−3 so answer is 1⋅2⋅3+1⋅3⋅4=6+12=181⋅2⋅3+1⋅3⋅4=6+12=18.

思路&过程

要想最小,就都和1连。

代码:

#include<iostream>
using namespace std;

int main()
{
	long long n,i,j,ans;
	cin>>n;
	ans=0;
	while(n>=3)
	{
		ans=ans+n*(n-1);
		n--;
	}
	cout<<ans<<endl;
	return 0;
 } 
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
当出现"ModuleNotFoundError: No module named 'matplotlib.tri._triangulation'"的错误时,这意味着你的环境中没有安装名为'matplotlib'的模块或者该模块的某个子模块。解决这个问题有几个方法可以尝试: 1. 确保你已经正确安装了matplotlib模块。可以使用以下命令在命令行中安装最新版本的matplotlib:'python -m pip install matplotlib' [2] 2. 如果你已经安装了matplotlib模块,但仍然出现错误,可能是因为你的Python运行环境无法找到该模块。尝试在代码中添加以下导入语句来指定matplotlib的路径:'import sys; sys.path.append("path/to/matplotlib")',其中"path/to/matplotlib"应该是你matplotlib模块的实际安装路径。然后再次尝试运行代码并查看是否解决了问题。 3. 如果你尝试了以上两种方法仍然无法解决问题,可能是因为你的matplotlib模块损坏或不完整。你可以尝试卸载并重新安装matplotlib模块,或者尝试安装其他版本的matplotlib模块。 希望以上方法可以帮助你解决这个问题。如果问题仍然存在,请提供更多详细信息,以便我能够更准确地帮助你。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [ModuleNotFoundError: No module named ‘matplotlib‘的多种解决办法](https://blog.csdn.net/weixin_44283054/article/details/109556912)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [快速解决:ModuleNotFoundError: No module named ‘matplotlib](https://blog.csdn.net/weixin_44152939/article/details/128149456)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [ModuleNotFoundError: No module named ‘dateutil’,但是pip install却提示已经安装解决办法](https://download.csdn.net/download/weixin_38668160/13759352)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值