ZOJ 10th Anniversary Contest - I A Song of Anniversary

#include<stdio.h>
#include<math.h>
#include<vector>
#include<algorithm>
using namespace std;
inline double sqr(double x)
{
    return x*x;
}
struct Point
{
    int x,y;
    int time;
    bool operator < (const Point & p2) const
    {
        return time<p2.time;
    }
    double operator ^ (const Point & p2) const
    {
        return sqrt(sqr(x-p2.x)+sqr(y-p2.y));
    }
    void read(const char * s)
    {
        sscanf(s,"%d,%d,%d,%*d,%*d",&x,&y,&time);
    }
};
vector <Point> vp;
int k;
bool read()
{
    static bool first=true;
    if (first)
    {
        if (scanf("%*s")==EOF) return false;
        first=false;
    }
    if (scanf("%d",&k)==EOF) return false;
    vp.clear();
    static char s[256];
    while (1)
    {
        if (scanf("%s",s)==EOF) return true;
        if (s[0]=='[') return true;
        Point p;
        p.read(s);
        vp.push_back(p);
    }
    return true;
}
vector<double> vd;
int main()
{
    freopen("i.in","r",stdin);
    while (read())
    {
        sort(vp.begin(),vp.end());
        vd.clear();
        int n=vp.size();
        int i;
        for (i=1;i<n;i++)
        {
            vd.push_back(vp[i]^vp[i-1]);
        }
        sort(vd.begin(),vd.end());
        double ans;
        if (k==0) ans=0; else ans=vd[n-k];
        printf("%.3f\n",ans);
    }
    return 0;
}

  

转载于:https://www.cnblogs.com/USTC-ACM/archive/2012/03/11/2390342.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值