POJ - 1696 - Space Ant (极角排序)

12 篇文章 0 订阅
7 篇文章 0 订阅

思路:

先找左下点,然后排序找其右下第一个点,重复即可

#include <iostream>
#include <cmath>
#include <algorithm>
using namespace std;
const double eps = 1e-8;
int pos;
int sgn(double x)
{
    if(fabs(x) < eps) return 0;
    return x > 0 ? 1 : -1;
}
struct Point
{
    double x,y;
    int index_;
}node[60];
Point operator - (Point  a, Point b)
{
    Point c;
    c.x= a.x - b.x;
    c.y= a.y - b.y;
    return c;
}
double operator ^ (Point  a,Point  b)
{
    return a.x *b.y - a.y * b.x;
}
double operator *(Point a, Point b)
{
    return a.x*b.x + a.y*b.y;
}
double dist(Point  a, Point b)
{
    return sqrt((a-b)*(a-b));
}
bool cmp(Point a,Point b)
{
    double t = (a-node[pos])^(b-node[pos]);
    if(sgn(t) == 0)
    {
        return dist(node[pos],a) < dist(node[pos],b);
    }
    if(sgn(t) < 0) return false;
    else return true;
}
int main()
{
    int t,n;
    cin>>t;
    while(t--)
    {
        cin>>n;
        for(int i = 0 ; i < n; i++)
        {
            cin>>node[i].index_>>node[i].x>>node[i].y;
            if(node[i].y < node[0].y ||(node[i].y == node[0].y && node[i].x < node[0].x))
                swap(node[i],node[0]);
        }
        pos = 0;
        for(int i= 1; i < n; i++)
        {
            sort(node + i, node + n,cmp);
            pos++;
        }
         cout<<n;
         for(int i = 0;i < n; i++)
         {
             cout<<' '<<node[i].index_;
         }
         cout<<endl;
    }
}

 

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值