Wilbur and Swimming Pool(矩形求面积)

来源:互联网 发布:网络机顶盒价格 编辑:程序博客网 时间:2024/06/05 02:50


Wilbur and Swimming Pool
Crawling in process...Crawling failedTime Limit:1000MS    Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
SubmitStatus Practice CodeForces 596A

Description

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.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 4) — the number of vertices that werenot erased by Wilbur's friend.

Each of the following n lines contains two integersxi andyi ( - 1000 ≤ xi, yi ≤ 1000) —the coordinates of thei-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.

Output

Print the area of the initial rectangle if it could be uniquely determined by the points remaining. Otherwise, print - 1.

Sample Input

Input
20 01 1
Output
1
Input
11 1
Output
-1

Sample Output

302000
 

Hint

In the first sample, two opposite corners of the initial rectangle are given, and that gives enough information to say that the rectangle is actually a unit square.

In the second sample there is only one vertex left and this is definitely not enough to uniquely define the area.

题意:矩形的边和坐标轴平行,原本矩形4个顶点已知,后来由于某种原因擦除后,还剩下n(1<=n<=4)个矩形的顶点,根据这n个顶点判断能不能唯一确定一个矩形,若能则输出矩形面积,反之输出-1.

思路:把这n个矩形的纵坐标、横坐标分别排序。无论是一个点还是2、3、4点,在经过排序后,若排在最后一个横坐标与排在最前的一个横坐标相等,说明这n个点在一条竖直线上,同样若排在最后一个纵坐标与排在最前的一个纵坐标相等,说明这n个点在一条横直线上,这些点都不能确定一个矩形。最后一个纵坐标与排在最前的一个纵坐标不相等

且最后一个横坐标与排在最前的一个横坐标不相等,说明至少有两个点在矩形对角线上,这样就可以唯一确定矩形。

h=x[n-1]-x[0];//矩形的宽

s=y[n-1]-y[0]//矩形的长

area=h*s;

My   solution:

/*2016.3.12*/

#include<stdio.h>#include<algorithm>using namespace std;int x[5],y[5];int main(){int i,j,k,n,m;while(scanf("%d",&n)==1){for(i=0;i<n;i++)scanf("%d%d",&x[i],&y[i]);sort(x,x+n);sort(y,y+n);if(x[0]!=x[n-1]&&y[0]!=y[n-1]){m=(x[n-1]-x[0])*(y[n-1]-y[0]);printf("%d\n",m);}elseprintf("-1\n");}return  0;}


0 0
原创粉丝点击