D. Minimum Triangulation

本文解析了CodeForces竞赛中一道关于多边形三角剖分的题目,探讨了如何计算给定正多边形所有可能三角剖分中的最小权重。通过贪心策略,确定了最优解总是包含编号为1的顶点的三角形,给出了解题思路和代码实现。

链接:https://codeforces.ml/contest/1140/problem/D

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

input

Copy

3

output

Copy

6

input

Copy

4

output

Copy

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<bits/stdc++.h>
using namespace std;
long long n,s;
int main()
{
	cin>>n;
	s=0;
	for(int i=2;i<=n-1;i++)
	{
		s+=i*(i+1);
	}
	cout<<s<<endl;
}

 

D:\anaconda3\python.exe E:\exercise\curve_fund\project5\pythonProject\007.py 已生成机翼四面体网格: 360节点, 1340单元 E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 24358 (\N{CJK UNIFIED IDEOGRAPH-5F26}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 21521 (\N{CJK UNIFIED IDEOGRAPH-5411}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 23637 (\N{CJK UNIFIED IDEOGRAPH-5C55}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 21402 (\N{CJK UNIFIED IDEOGRAPH-539A}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 26426 (\N{CJK UNIFIED IDEOGRAPH-673A}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 32764 (\N{CJK UNIFIED IDEOGRAPH-7FFC}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 22235 (\N{CJK UNIFIED IDEOGRAPH-56DB}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 38754 (\N{CJK UNIFIED IDEOGRAPH-9762}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 20307 (\N{CJK UNIFIED IDEOGRAPH-4F53}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 32593 (\N{CJK UNIFIED IDEOGRAPH-7F51}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:113: UserWarning: Glyph 26684 (\N{CJK UNIFIED IDEOGRAPH-683C}) missing from font(s) DejaVu Sans. plt.savefig('mesh/wing_mesh_visualization.png') D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 24358 (\N{CJK UNIFIED IDEOGRAPH-5F26}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 21521 (\N{CJK UNIFIED IDEOGRAPH-5411}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 23637 (\N{CJK UNIFIED IDEOGRAPH-5C55}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 21402 (\N{CJK UNIFIED IDEOGRAPH-539A}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 26426 (\N{CJK UNIFIED IDEOGRAPH-673A}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 32764 (\N{CJK UNIFIED IDEOGRAPH-7FFC}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 22235 (\N{CJK UNIFIED IDEOGRAPH-56DB}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 38754 (\N{CJK UNIFIED IDEOGRAPH-9762}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 20307 (\N{CJK UNIFIED IDEOGRAPH-4F53}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 32593 (\N{CJK UNIFIED IDEOGRAPH-7F51}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 26684 (\N{CJK UNIFIED IDEOGRAPH-683C}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) 已生成13个传感器位置数据 E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 24358 (\N{CJK UNIFIED IDEOGRAPH-5F26}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 21521 (\N{CJK UNIFIED IDEOGRAPH-5411}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 23637 (\N{CJK UNIFIED IDEOGRAPH-5C55}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 21402 (\N{CJK UNIFIED IDEOGRAPH-539A}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 26426 (\N{CJK UNIFIED IDEOGRAPH-673A}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 32764 (\N{CJK UNIFIED IDEOGRAPH-7FFC}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 20256 (\N{CJK UNIFIED IDEOGRAPH-4F20}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 24863 (\N{CJK UNIFIED IDEOGRAPH-611F}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 22120 (\N{CJK UNIFIED IDEOGRAPH-5668}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:209: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_locations_visualization.png') D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 20256 (\N{CJK UNIFIED IDEOGRAPH-4F20}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 24863 (\N{CJK UNIFIED IDEOGRAPH-611F}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 22120 (\N{CJK UNIFIED IDEOGRAPH-5668}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 20301 (\N{CJK UNIFIED IDEOGRAPH-4F4D}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 32622 (\N{CJK UNIFIED IDEOGRAPH-7F6E}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) 已生成FBG传感器数据: 100个时间步 x 13个传感器 E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 24494 (\N{CJK UNIFIED IDEOGRAPH-5FAE}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 24212 (\N{CJK UNIFIED IDEOGRAPH-5E94}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 20856 (\N{CJK UNIFIED IDEOGRAPH-5178}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 22411 (\N{CJK UNIFIED IDEOGRAPH-578B}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 20256 (\N{CJK UNIFIED IDEOGRAPH-4F20}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 24863 (\N{CJK UNIFIED IDEOGRAPH-611F}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:266: UserWarning: Glyph 22120 (\N{CJK UNIFIED IDEOGRAPH-5668}) missing from font(s) DejaVu Sans. plt.tight_layout() E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 24494 (\N{CJK UNIFIED IDEOGRAPH-5FAE}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 24212 (\N{CJK UNIFIED IDEOGRAPH-5E94}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 20856 (\N{CJK UNIFIED IDEOGRAPH-5178}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 22411 (\N{CJK UNIFIED IDEOGRAPH-578B}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 20256 (\N{CJK UNIFIED IDEOGRAPH-4F20}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 24863 (\N{CJK UNIFIED IDEOGRAPH-611F}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') E:\exercise\curve_fund\project5\pythonProject\007.py:267: UserWarning: Glyph 22120 (\N{CJK UNIFIED IDEOGRAPH-5668}) missing from font(s) DejaVu Sans. plt.savefig('input/sensor_data_visualization.png') D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 26102 (\N{CJK UNIFIED IDEOGRAPH-65F6}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 38388 (\N{CJK UNIFIED IDEOGRAPH-95F4}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 21464 (\N{CJK UNIFIED IDEOGRAPH-53D8}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 21270 (\N{CJK UNIFIED IDEOGRAPH-5316}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 24494 (\N{CJK UNIFIED IDEOGRAPH-5FAE}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 24212 (\N{CJK UNIFIED IDEOGRAPH-5E94}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 20856 (\N{CJK UNIFIED IDEOGRAPH-5178}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) D:\Program Files\JetBrains\PyCharm 2024.1.6\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:126: UserWarning: Glyph 22411 (\N{CJK UNIFIED IDEOGRAPH-578B}) missing from font(s) DejaVu Sans. FigureCanvasAgg.draw(self) Traceback (most recent call last): File "E:\exercise\curve_fund\project5\pythonProject\007.py", line 302, in <module> generate_iFEM_input_data() File "E:\exercise\curve_fund\project5\pythonProject\007.py", line 25, in generate_iFEM_input_data generate_calibration_matrix(len(sensor_locs)) TypeError: generate_calibration_matrix() takes 0 positional arguments but 1 was given 进程已结束,退出代码为 1
最新发布
12-14
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值