Codeforces Round #388 (Div. 2) 749B Parallelogram is Back

来源:互联网 发布:迪杰斯特拉算法 详解 编辑:程序博客网 时间:2024/05/29 08:58

题目传送门:点击打开链接

B. Parallelogram is Back
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Long time ago Alex created an interesting problem about parallelogram. The input data for this problem contained four integer points on the Cartesian plane, that defined the set of vertices of some non-degenerate (positive area) parallelogram. Points not necessary were given in the order of clockwise or counterclockwise traversal.

Alex had very nice test for this problem, but is somehow happened that the last line of the input was lost and now he has only three out of four points of the original parallelogram. He remembers that test was so good that he asks you to restore it given only these three points.

Input

The input consists of three lines, each containing a pair of integer coordinatesxi andyi ( - 1000 ≤ xi, yi ≤ 1000). It's guaranteed that these three points do not lie on the same line and no two of them coincide.

Output

First print integer k — the number of ways to add one new integer point such that the obtained set defines some parallelogram of positive area. There is no requirement for the points to be arranged in any special order (like traversal), they just define the set of vertices.

Then print k lines, each containing a pair of integer — possible coordinates of the fourth point.

Example
Input
0 01 00 1
Output
31 -1-1 11 1
Note

If you need clarification of what parallelogram is, please check Wikipedia page:

https://en.wikipedia.org/wiki/Parallelogram



题意:给你平行四边形的三个点:问你第四个点有几种可能,并输出这些可能的点。(无需按顺序输出)


如果这个平行四边形是ABCD的话。xa-xb=xd-xc   ya-yb=yd-yc


根据这个公式就能很简单的退出来了。


#include<bits/stdc++.h>using namespace std;#define  LL long long#define  M(a) memset(a,0,sizeof(a))struct ssr{    int x,y;} spot[5];int main(){    M(spot);    while(~scanf("%d %d",&spot[1].x,&spot[1].y))    {        scanf("%d %d",&spot[2].x,&spot[2].y);        scanf("%d %d",&spot[3].x,&spot[3].y);        int tempx=0,tempy=0;        printf("3\n");        tempx=spot[3].x-spot[2].x+spot[1].x;        tempy=spot[3].y-spot[2].y+spot[1].y;        printf("%d %d\n",tempx,tempy);        tempx=spot[3].x-spot[1].x+spot[2].x;        tempy=spot[3].y-spot[1].y+spot[2].y;        printf("%d %d\n",tempx,tempy);        tempx=spot[1].x-spot[3].x+spot[2].x;        tempy=spot[1].y-spot[3].y+spot[2].y;        printf("%d %d\n",tempx,tempy);    }    return 0;}


原创粉丝点击