holiday/8.10/I-Wall
ljcjames 65b6b8310f 8.13早上比赛 2022-08-13 14:22:41 +08:00
..
doc 8.12 2022-08-12 15:37:34 +08:00
test 补充样例输入输出 2022-08-12 22:44:04 +08:00
Readme.md 8.13早上比赛 2022-08-13 14:22:41 +08:00
main.cpp 删掉没用的 2022-08-12 16:49:09 +08:00
question.jpeg 补充md 2022-08-12 22:55:20 +08:00
reference.cpp 补充md 2022-08-12 22:55:20 +08:00
sketch.jpg 补充md 2022-08-12 22:55:20 +08:00

Readme.md

I - Wall

https://vjudge.net/contest/508277#problem/I

题意

造一堵城墙围着一个城堡城墙离最近不小于一定距离L如何使城墙最短

做法

用Graham法看PPT即按逆时针顺序找点左转入栈右转上一个出栈直到变成是右转求凸包再加上一个以L为半径的的周长(在转角的地方,外角和=360

关键词

Graham、凸包、结构体、栈、PI、eps、计算几何、构造函数、

易错点

(int)()记得加括号、scanf与&

工具箱

题面

Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King's castle. The King was so greedy, that he would not listen to his Architect's proposals to build a beautiful brick wall with a perfect shape and nice tall towers. Instead, he ordered to build the wall around the whole castle using the least amount of stone and labor, but demanded that the wall should not come closer to the castle than a certain distance. If the King finds that the Architect has used more resources to build the wall than it was absolutely necessary to satisfy those requirements, then the Architect will loose his head. Moreover, he demanded Architect to introduce at once a plan of the wall listing the exact amount of resources that are needed to build the wall.

Your task is to help poor Architect to save his head, by writing a program that will find the minimum possible length of the wall that he could build around the castle to satisfy King's requirements.

The task is somewhat simplified by the fact, that the King's castle has a polygonal shape and is situated on a flat ground. The Architect has already established a Cartesian coordinate system and has precisely measured the coordinates of all castle's vertices in feet.

Input

The first line of the input file contains two integer numbers N and L separated by a space. N (3 <= N <= 1000) is the number of vertices in the King's castle, and L (1 <= L <= 1000) is the minimal number of feet that King allows for the wall to come close to the castle.

Next N lines describe coordinates of castle's vertices in a clockwise order. Each line contains two integer numbers Xi and Yi separated by a space (-10000 <= Xi, Yi <= 10000) that represent the coordinates of ith vertex. All vertices are different and the sides of the castle do not intersect anywhere except for vertices.

Output

Write to the output file the single number that represents the minimal possible length of the wall in feet that could be built around the castle to satisfy King's requirements. You must present the integer number of feet to the King, because the floating numbers are not invented yet. However, you must round the result in such a way, that it is accurate to 8 inches (1 foot is equal to 12 inches), since the King will not tolerate larger error in the estimates.

Sample

input

9 100 200 400 300 400 300 300 400 300 400 400 500 400 500 200 350 200 200 200

output

1628

Hint

结果四舍五入就可以了

这是题目截图 Markdown官网教程