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;
    }
  • 相关阅读:
    vue 实战
    通信的三个核心问题
    中间件编程—面向通信的软件组件
    jsbridge与通信模型
    laravel5.6 调用第三方类库
    淘宝IP地址库API接口(PHP)通过ip获取地址信息
    这可能是目前最全的Redis高可用技术解决方案总结
    json_decode遇到的编码问题
    太平洋网络ip地址查询接口使用,返回json格式,默认返回jsonp
    分享几个IP获取地理位置的API接口(最全面的了)
  • 原文地址:https://www.cnblogs.com/homura/p/5736111.html
Copyright © 2011-2022 走看看