#abc250f. F - One Fourth
F - One Fourth
Score : points
问题描述
ABC 250 对于目标举办 ABC 1000 的高桥来说是一个值得纪念的四分之一里程碑,因此他打算通过尽可能接近吃掉所买披萨的 来庆祝这次比赛。
高桥购买的披萨呈平面凸 边形形状。当披萨放在 平面上时,第 个顶点的坐标为 。
高桥决定按照以下方式切割并食用披萨:
- 首先,高桥从披萨的顶点中选择两个不相邻的顶点,并沿过这两点的直线用刀进行切割,将披萨分割成两块。
- 然后,他任意选择其中一块食用。
令 为高桥所购披萨面积的四分之一(), 为高桥所吃披萨的那一块面积。求 可能达到的最小值。可以证明这个值始终为整数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
ABC 250 is a commemorable quarter milestone for Takahashi, who aims to hold ABC 1000, so he is going to celebrate this contest by eating as close to of a pizza he bought as possible.
The pizza that Takahashi bought has a planar shape of convex -gon. When the pizza is placed on an -plane, the -th vertex has coordinates .
Takahashi has decided to cut and eat the pizza as follows.
- First, Takahashi chooses two non-adjacent vertices from the vertices of the pizza and makes a cut with a knife along the line passing through those two points, dividing the pizza into two pieces.
- Then, he chooses one of the pieces at his choice and eats it.
Let be the quarter () of the area of the pizza that Takahashi bought, and be the area of the piece of pizza that Takahashi eats. Find the minimum possible value of . We can prove that this value is always an integer.
Constraints
- All values in input are integers.
- The given points are the vertices of a convex -gon in the counterclockwise order.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1
5
3 0
2 3
-1 3
-3 1
-1 -1
Sample Output 1
1
Suppose that he makes a cut along the line passing through the -rd and the -th vertex and eats the piece containing the -th vertex.
Then, , , and , which is minimum possible.
Sample Input 2
4
400000000 400000000
-400000000 400000000
-400000000 -400000000
400000000 -400000000
Sample Output 2
1280000000000000000
Sample Input 3
6
-816 222
-801 -757
-165 -411
733 131
835 711
-374 979
Sample Output 3
157889
update @ 2024/3/10 10:41:39