Codeforce#331 (Div. 2) A. Wilbur and Swimming Pool(谨以此题来纪念我的愚蠢)

C
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 were not erased by Wilbur's friend.

Each of the following n lines contains two integers xi and yi ( - 1000 ≤ xi, yi ≤ 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.

Output

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

Sample test(s)
input
2
0 0
1 1
output
1
input
1
1 1
output
-1
Note

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.

题意:输入若干个点判断能否确定一个矩形的面积,矩形平行于坐标轴

开始正常写,提交WA,然后改,始终没能找到错误。最后才发现自己思维太不严谨了

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 #include <cstring>
 5 #include <cmath>
 6 using namespace std;
 7 int flag,n;
 8 struct node
 9 {
10     int x,y;
11 };
12 node a[4];
13 int main()
14 {
15     while(scanf("%d", &n) != EOF)
16     {
17         flag = 0;
18         int s;
19         for(int i = 0; i < n; i++)
20             scanf("%d%d", &a[i].x, &a[i].y);
21         if(n < 2)
22             flag = 1;
23         else
24         {
25             if(n == 2)
26             {
27                 if(a[0].x == a[1].x || a[0].y == a[1].y)
28                 {
29                     flag = 1;
30                 }
31                 else
32                 {
33                     s = abs(a[1].x - a[0].x) * abs(a[1].y - a[0].y);
34                 }
35             }
36             else
37             {
38                 if ((a[0].x == a[1].x || a[0].y == a[1].y) && (a[0].x == a[2].x || a[0].y == a[2].y) ) //就是落了这个判断条件。。。。。。
39                     s = abs(a[1].x - a[2].x) * abs(a[1].y - a[2].y);
40                 else
41                 for(int i = 1; i < n; i++)
42                 {
43                     if(a[0].x == a[i].x || a[0].y == a[i].y)
44                         continue;
45                     else
46                         s = abs(a[0].x - a[i].x) * abs(a[0].y - a[i].y);
47                 }
48             }
49         }
50         if(flag)
51             printf("-1
");
52         else
53             printf("%d
",s);
54     }
55     return 0;
56 }
View Code
原文地址:https://www.cnblogs.com/zhaopAC/p/4980953.html