303059: CF596A. Wilbur and Swimming Pool
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Wilbur and Swimming Pool
题意翻译
给您 $n$ 个坐标 $x,y$,分别选择 $2$ 个 $x,y$ 作为固定的最大矩形的分别顶点,请您输出这个最大矩形的面积。 Translated by @kyron✅题目描述
After making bad dives into swimming pools, Wilbur wants to build a swimming pool in the shape of a rectangle in his backyard. He has set up coordinate axes, and he wants the sides of the rectangle to be parallel to them. Of course, the area of the rectangle must be positive. Wilbur had all four vertices of the planned pool written on a paper, until his friend came along and erased some of the vertices. Now Wilbur is wondering, if the remaining $ n $ vertices of the initial rectangle give enough information to restore the area of the planned swimming pool.输入输出格式
输入格式
The first line of the input contains a single integer $ n $ ( $ 1<=n<=4 $ ) — the number of vertices that were not erased by Wilbur's friend. Each of the following $ n $ lines contains two integers $ x_{i} $ and $ y_{i} $ ( $ -1000<=x_{i},y_{i}<=1000 $ ) —the coordinates of the $ i $ -th vertex that remains. Vertices are given in an arbitrary order. It's guaranteed that these points are distinct vertices of some rectangle, that has positive area and which sides are parallel to the coordinate axes.
输出格式
Print the area of the initial rectangle if it could be uniquely determined by the points remaining. Otherwise, print $ -1 $ .
输入输出样例
输入样例 #1
2
0 0
1 1
输出样例 #1
1
输入样例 #2
1
1 1
输出样例 #2
-1