zoukankan      html  css  js  c++  java
  • Codeforces Round #331 (Div. 2) A. Wilbur and Swimming Pool 水题

    A. Wilbur and Swimming Pool

    Time Limit: 20 Sec

    Memory Limit: 256 MB

    题目连接

    http://codeforces.com/contest/596/problem/A

    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 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 Input

    2
    0 0
    1 1

    Sample Output

    1

    HINT

    题意

    一个矩形,4个点,但是被人擦去了,现在就只有n个点了

    然后问你这n个点能不能构成独一无二的矩形,如果可以输出面积

    否则否则输出-1

    题解:

    扫一遍四个点,判断minx==maxx miny==maxy,满足两个中的一个,就输出-1

    否则输出面积就好了

    代码

    #include<iostream>
    #include<stdio.h>
    #include<algorithm>
    using namespace std;
    
    int main()
    {
        int n;cin>>n;
        int minx,maxx,miny,maxy;
        cin>>minx>>miny;
        maxx=minx,maxy=miny;
        if(n==1)return puts("-1");
        for(int i=1;i<n;i++)
        {
            int x,y;cin>>x>>y;
            minx=min(minx,x);
            maxx=max(maxx,x);
            miny=min(miny,y);
            maxy=max(maxy,y);
        }
        if((maxx==minx)||(maxy==miny))
            return puts("-1");
        printf("%d
    ",(maxx-minx)*(maxy-miny));
    }
  • 相关阅读:
    洛谷网校:图论:最小生成树和最短路
    洛谷网校:动态规划(二)单调队列优化 p1725,p3572
    洛谷网校:动态规划(一)树上DP p3574
    洛谷网校:树形问题
    ybt1217 棋盘问题(八皇后加强版)
    模拟赛(一)T117903 防疫工作安排
    模拟赛(一)T117901 共享电动车
    洛谷网校:数论(二)
    洛谷网校:数论(一)
    双倍快乐:两个八皇后:ybt1213&ybt1214
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4967947.html
Copyright © 2011-2022 走看看