Codeforces Round #261 (Div. 2) A. Pashmak and Garden

来源:互联网 发布:如何购买淘宝客户资料 编辑:程序博客网 时间:2024/04/29 22:02
A. Pashmak and Garden
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Pashmak has fallen in love with an attractive girl called Parmida since one year ago...

Today, Pashmak set up a meeting with his partner in a romantic garden. Unfortunately, Pashmak has forgotten where the garden is. But he remembers that the garden looks like a square with sides parallel to the coordinate axes. He also remembers that there is exactly one tree on each vertex of the square. Now, Pashmak knows the position of only two of the trees. Help him to find the position of two remaining ones.

Input

The first line contains four space-separated x1, y1, x2, y2 ( - 100 ≤ x1, y1, x2, y2 ≤ 100) integers, where x1 and y1 are coordinates of the first tree and x2 and y2 are coordinates of the second tree. It's guaranteed that the given points are distinct.

Output

If there is no solution to the problem, print -1. Otherwise print four space-separated integers x3, y3, x4, y4 that correspond to the coordinates of the two other trees. If there are several solutions you can output any of them.

Note that x3, y3, x4, y4 must be in the range ( - 1000 ≤ x3, y3, x4, y4 ≤ 1000).

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

利用两点的斜率(只能为1,-1,0,无穷大)判断是否可以构成正方形
#include<iostream>#include<cstdio>#include<cmath>#include<cstring>using namespace std;int main(){    int x1,y1,x2,y2;    int x3,y3,x4,y4;    while(cin>>x1>>y1>>x2>>y2)    {        if(x1-x2==0||abs(x1-x2)==abs(y1-y2)||y1-y2==0)        {            if(x1-x2==0)            {                x3=abs(y1-y2)+x1;                y3=y1;                x4=x3;                y4=y2;            }            else if(abs(x1-x2)==abs(y1-y2))            {                x3=x2;                y3=y1;                x4=x1;                y4=y2;            }            else            {                x3=x1;                y3=y1-abs(x1-x2);                x4=x2;                y4=y2-abs(x1-x2);            }            cout<<x3<<" "<<y3<<" "<<x4<<" "<<y4<<endl;        }        else            cout<<"-1"<<endl;    }    return 0;}


0 0
原创粉丝点击