问题4173--C

4173: C

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 128 MB

题目描述

You would like to mail some origami you have made to your mom. The price of mailing is dependent on the area of the envelope used to mail it: the smaller the envelope area, the less cost to ship. You cannot fold the origami shape to make it smaller. Of course, the envelope you are shipping the origami in must be rectangular. Consider the vertices which represent the points along the boundary of the paper in order, such that the edge of the paper may fold over itself. Given the verticies describing the origami shape, what is the area of the smallest envelope that you can use to mail the origami?

输入

The first line contains the integer N (3 ≤ N ≤ 100 000) which is the number of verticies describing your origami. The next N lines contain two integers, x y, the x-coordinate and y-coordinate of that particular vertex (0 ≤ x ≤ 10 000 000; 0 ≤ y ≤ 10 000 000). You should assume all verticies are distinct, and that there is no line which contains all verticies.

输出

Output the area of the smallest envelope that will contain the origami, rounded to the nearest integer. You can assume that no test case will have the area of the smallest envelope containing the given vertices have a fractional part between 0.49 and 0.51.

样例输入 Copy

6
4 9
8 13
8 9
0 13
4 0
0 3

样例输出 Copy

104

提示

来源/分类