码迷,mamicode.com
首页 > 编程语言 > 详细

POJ 2007 Scrambled Polygon(简单极角排序)

时间:2017-06-05 12:33:22      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:int   ack   font   mic   ble   art   important   bool   string   

水题,根本不用凸包,就是一简单的极角排序。

叉乘<0,逆时针。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
using namespace std;
const int maxn=55;


struct point
{
    double x,y;
} p[maxn];


double cross(point c1,point b1,point a2)
{
    return (b1.x-c1.x)*(a2.y-c1.y)-(b1.y-c1.y)*(a2.x-c1.x);
}

bool cmp(point a,point b)
{
    point c;
    c.x=0;c.y=0;
    return cross(c,b,a)<0;
}

int main()
{
    int n=0;
    while(scanf("%lf %lf",&p[n].x,&p[n].y)!=EOF)
        n++;
    sort(p+1,p+n, cmp);
    for(int i =0; i<n; i++)
        cout<<"("<<p[i].x<<","<<p[i].y<<")"<<endl;
    return 0;
}


POJ 2007 Scrambled Polygon(简单极角排序)

标签:int   ack   font   mic   ble   art   important   bool   string   

原文地址:http://www.cnblogs.com/wzzkaifa/p/6944227.html

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