uva_10250 - The Other Two Trees

来源:互联网 发布:java游戏开发前景 编辑:程序博客网 时间:2024/05/29 09:40

Problem E

The Other Two Trees

Input: standard input

Output: standard output

Time Limit: 2 seconds

 

You have a quadrilateral shaped land whose opposite fences are of equal length. You have four neighbors whose lands are exactly adjacent to your four fences, that means you have a common fence with all of them. For example if you have a fence of length d in one side, this fence of length d is also the fence of the adjacent neighbor on that side. The adjacent neighbors have no fence in common among themselves and their lands also don’t intersect. The main difference between their land and your land is that their lands are all square shaped. All your neighbors have a tree at the center of their lands. Given the Cartesian coordinates of trees of two opposite neighbors, you will have to find the Cartesian coordinates of the other two trees.

 

Input

The input file contains several lines of input. Each line contains four floating point or integer numbers x1, y1, x2, y2, where (x1, y1), (x2, y2) are the coordinates of the trees of two opposite neighbors. Input is terminated by end of file.

 

Output

For each line of input produce one line of output which contains the line “Impossible.” without the quotes, if you cannot determine the coordinates of the other two trees. Otherwise, print four floating point numbers separated by a single space with ten digits after the decimal point ax1, ay1, ax2, ay2, where (ax1, ay1)  and (ax2, ay2) are the coordinates of the other two trees. The output will be checked with special judge program, so don’t worry about the ordering of the points or small precision errors. The sample output will make it clear.

 

Sample Input

10 0 -10 0

10 0 -10 0

10 0 -10 0

 

Sample Output

0.0000000000 10.0000000000 0.0000000000 -10.0000000000

0.0000000000 10.0000000000 -0.0000000000 -10.0000000000

0.0000000000 -10.0000000000 0.0000000000 10.0000000000


     以平行四边形的四个边向外做四个正方形,这四个正方形的中心点围成正方形,证明略。。。然后知道两个顶点坐标先求出中心点坐标,再用向量就可以很快求出

    刚开始用float wa了,精度不够,改成double后ac

  

#include <iostream>#include <iomanip>using namespace std;int main(){    double x1, y1, x2, y2;    while ( cin >> x1 >> y1 >> x2 >> y2){        double cx = ( x1+x2)/2, cy = ( y1+y2)/2;                double vx = x1 - cx, vy = y1 - cy;        cout << fixed << setprecision(10);        cout << cx - vy << " " << cy + vx << " " << cx + vy << " " << cy - vx <<endl;    }    return 0;}

0 0
原创粉丝点击