zoukankan      html  css  js  c++  java
  • code forces 140F New Year Snowflake

    F. New Year Snowflake

     

    As Gerald ..., in other words, on a New Year Eve Constantine prepared an unusual present for the Beautiful Lady. The present is the magic New Year snowflake that can make any dream come true.

    The New Year snowflake consists of tiny ice crystals, which can be approximately regarded as points on the plane. The beauty of the New Year snowflake is that it has a center of symmetry. This is a point such that for each crystal of the snowflake exists another crystal, symmetrical to it relative to that point. One of the crystals can be placed directly in the center of symmetry.

    While Constantine was choosing a snowflake among millions of other snowflakes, no less symmetrical and no less magical, then endured a difficult path through the drifts to the house of his mistress, while he was waiting with bated breath for a few long moments before the Beautiful Lady opens the door, some of the snowflake crystals melted and naturally disappeared. Constantine is sure that there were no more than k of such crystals, because he handled the snowflake very carefully. Now he is ready to demonstrate to the Beautiful Lady all the power of nanotechnology and restore the symmetry of snowflakes.

    You are given the coordinates of the surviving snowflake crystals, given in nanometers. Your task is to identify all possible positions of the original center of symmetry.

    Input

    The first line contains two integers n and k (1 ≤ n ≤ 200 000, 0 ≤ k ≤ 10) — the number of the surviving snowflake crystals and the maximum number of melted crystals, correspondingly. Next n lines contain the coordinates of the crystals that are left in the following form: "xi yi". The coordinates are integers and do not exceed 5·108 in absolute value. All given points are different.

    Output

    The first line contains an integer c — the number of possible symmetry centers. Next c lines should contain the centers' descriptions. Each symmetry center is described by a couple of coordinates "x y", separated by a space. Print the coordinates with absolute error not exceeding 10 - 6. You are allowed to print the symmetry centers in any order. All printed points should be different. If there exist an infinite number of possible symmetry centers, print the single number "-1".

    Examples
    input
    4 0
    0 0
    0 1
    1 0
    1 1
    output
    1
    0.5 0.5
    input
    4 2
    0 0
    0 1
    1 0
    1 1
    output
    5
    0.0 0.5
    0.5 0.0
    0.5 0.5
    0.5 1.0
    1.0 0.5
    input
    4 4
    0 0
    0 1
    1 0
    1 1
    output
    -1

    #include<cstdio>
    #include<cstring>
    #include<vector>
    #include<algorithm>
    #define fi first
    #define se second
    using namespace std;
    struct point
    {
        int x,y;
        point(){}
        point(int _x,int _y):x(_x),y(_y){}
        bool operator < (const point& rhs)const
        {
            return x==rhs.x?y<rhs.y:x<rhs.x;
        }
        point operator + (const point& rhs)const
        {
            return point(x+rhs.x,y+rhs.y);
        }
        bool operator == (const point& rhs)const
        {
            return x==rhs.x&&y==rhs.y;
        }
    };
    vector<pair<double,double> >ans;
    const int N=2e5+5;
    int n,k;
    point p[N];
    bool jud(point t)
    {
        int l=0,r=n-1,cnt=0;
        while(l<=r)
        {
            if(p[l]+p[r]==t)l++,r--;
            else if(p[l]+p[r]<t)l++,cnt++;
            else r--,cnt++;
            if(cnt>k)return 0;
        }
        return 1;
    }
    int main()
    {
        scanf("%d%d",&n,&k);
        for(int i=0;i<n;i++)
            scanf("%d%d",&p[i].x,&p[i].y);
        if(k>=n){puts("-1");return 0;}
        sort(p,p+n);
        for(int i=0;i<k+1;i++)
            for(int j=n-k-1;j<n;j++)
            {
                point t=p[i]+p[j];
                if(jud(t))ans.push_back(make_pair(t.x*1.0/2,t.y*1.0/2));
            }
        sort(ans.begin(),ans.end());
        ans.erase(unique(ans.begin(),ans.end()),ans.end());
        int len=ans.size();
        printf("%d
    ",len);
        for(int i=0;i<len;i++)
            printf("%.12f %.12f
    ",ans[i].fi,ans[i].se);
        return 0;
    }
  • 相关阅读:
    sql 查询当前数据库所有表格以及所有表格数据条数
    MVC AjaxOptions 中的OnSuccess方法执行多次的问题
    已知当前地理位置经纬度查询几个点中最近的一个地点demo
    微信分享ios设备没有分享图标安卓有分享图标 (分享功能没有问题)
    摇一摇js 实现
    linq 的switch实现
    启动服务器脚本
    关于网站的优化
    Ubuntu纯命令行安装并配置Teamviewer
    在Jupyter中使用自定义conda环境
  • 原文地址:https://www.cnblogs.com/homura/p/5736111.html
Copyright © 2011-2022 走看看