码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces749B

时间:2019-04-02 21:06:35      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ret   font   ORC   one   ble   code   none   view   sample   

Parallelogram is Back

 CodeForces - 749B 

已知平行四边形的三个顶点,求第四个顶点可能的位置。Input输入有三行,每行包括两个整数x和y ( - 1000 ≤ xi, yi ≤ 1000),代表一个顶点的横纵坐标。Output输出的第一行为一个整数k,代表第四个顶点可能的位置数。
接下来k行,每行两个整数分别代表第四个顶点的横纵坐标。
输出的点的顺序任意.

Sample Input

0 0
0 1
1 0

Sample Output

3
-1 1
1 -1
1 1

Hint样例中有三个可能的顶点,(1,-1)、(-1,1)和(1,1)。

sol:小学奥数啊,容易知道对角线的坐标和是相等的
技术图片
#include <bits/stdc++.h>
using namespace std;
typedef int ll;
inline ll read()
{
    ll s=0;
    bool f=0;
    char ch= ;
    while(!isdigit(ch))
    {
        f|=(ch==-); ch=getchar();
    }
    while(isdigit(ch))
    {
        s=(s<<3)+(s<<1)+(ch^48); ch=getchar();
    }
    return (f)?(-s):(s);
}
#define R(x) x=read()
inline void write(ll x)
{
    if(x<0)
    {
        putchar(-); x=-x;
    }
    if(x<10)
    {
        putchar(x+0);    return;
    }
    write(x/10);
    putchar((x%10)+0);
    return;
}
#define W(x) write(x),putchar(‘ ‘)
#define Wl(x) write(x),putchar(‘\n‘)
int main()
{
    int x1,y1,x2,y2,x3,y3;
    R(x1); R(y1);
    R(x2); R(y2);
    R(x3); R(y3);
    puts("3");
    W(x2+x3-x1); Wl(y2+y3-y1);
    W(x1+x3-x2); Wl(y1+y3-y2);
    W(x1+x2-x3); Wl(y1+y2-y3);
    return 0;
}
/*
input
0 0
0 1
1 0
output
3
-1 1
1 -1
1 1
*/
View Code

 

 

codeforces749B

标签:ret   font   ORC   one   ble   code   none   view   sample   

原文地址:https://www.cnblogs.com/gaojunonly1/p/10645166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!