uva11626凸包路径

题目链接


https://vjudge.net/problem/UVA-11626
 就是凸包但是不要舍弃在一条直线上的点即可

#include <bits/stdc++.h>
using namespace std;
struct point
{
    double x,y,d;
};
point P[ 100001];
point S[ 100001];
point MP;
int countn = 0;
int N;
double crossproduct( point a, point b, point c )//ab到ac
{
    return (b.x-a.x)*(c.y-a.y)-(c.x-a.x)*(b.y-a.y);
}
double dist( point a, point b )
{
    return sqrt((b.x-a.x)*(b.x-a.x)+(b.y-a.y)*(b.y-a.y));
}
int cmp1( point a, point b)
{
    if ( a.x == b.x ) return a.y < b.y;
    else return a.x < b.x;
}
bool cmp2( point a, point b)
{
    return crossproduct( P[0], a, b ) > 0;
}
bool cmp3( point a, point b)
{
    double cp = crossproduct( P[0], a, b );
    if ( cp == 0.0 ) {
        if ( !crossproduct( P[0], a, MP ) )//在回边上
            return a.d > b.d;
        else return a.d < b.d;
    }else return cp > 0;
}

struct asshole
{
    void input()
    {
        countn = 0;
        scanf("%d",&N);
        char C;
        for ( int i = 0 ; i < N ; ++ i ) {
            scanf("%lf %lf %c",&P[countn].x,&P[countn].y,&C);
            if ( C == 'Y' ) countn++;
        }
    }
    void Graham(int cnt)
    {
        sort(P, P + cnt, cmp1);
        sort( P+1, P+cnt, cmp2);
        //处理共线
        for ( int i = 1 ; i < cnt ; ++ i )
            P[i].d = dist( P[0], P[i] );
        MP = P[cnt-1];
        sort( P+1, P+cnt, cmp3 );
        int top = -1;
        if ( cnt> 0 ) S[++ top] = P[0];
        if ( cnt> 1 ) S[++ top] = P[1];
        if ( cnt> 2 ) {
            S[++ top] = P[2];
            for ( int i = 3 ; i < cnt ; ++ i ) {
                while ( crossproduct( S[top-1], S[top], P[i] ) < 0 ) -- top;
                S[++ top] = P[i];
            }
        }
        printf("%d\n",top+1);
        for ( int i = 0 ; i <= top ; ++ i )
            printf("%.0f %.0f\n",S[i].x,S[i].y);
    }
}ja;
int main()
{
    int T;
    while ( scanf("%d",&T) != EOF )
    while ( T -- ) {
        ja.input();
        ja.Graham(countn);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值