码迷,mamicode.com
首页 > 其他好文 > 详细

poj3348Cows 凸包板子

时间:2020-10-27 11:27:51      阅读:20      评论:0      收藏:0      [点我收藏+]

标签:ret   algorithm   mes   --   cross   class   ++   can   凸包   

凸包板子

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
struct Point
{
    int x,y;
};
Point a[10010];
Point b[10010];
bool cmp(Point aa,Point bb)
{
    if(aa.x==bb.x)
    return aa.y<bb.y;
    else return aa.x<bb.x;
}
int Cross(Point aa,Point bb,Point cc)
{
    int ax=bb.x-aa.x;
    int bx=cc.x-aa.x;
    int ay=bb.y-aa.y;
    int by=cc.y-aa.y;
    if(ax*by-bx*ay<=0)return 0;
    else return ax*by-bx*ay;
}
int n;
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)scanf("%d%d",&a[i].x,&a[i].y);
    sort(a+1,a+n+1,cmp);
    int m=0;
    for(int i=1;i<=n;i++)
    {
        while(m>1&& !Cross(b[m-1],b[m],a[i]))m--;
        b[++m]=a[i];
    }
    int p=m;
    for(int i=n-1;i>=1;i--)
    {
        while(m>p&& !Cross(b[m-1],b[m],a[i]))m--;
        b[++m]=a[i];
    }
    long long sum=0;
    for(int i=3;i<=m;i++)
    sum+=Cross(b[1],b[i-1],b[i]);
    printf("%lld\n",sum/100);
    return 0;
}

 

poj3348Cows 凸包板子

标签:ret   algorithm   mes   --   cross   class   ++   can   凸包   

原文地址:https://www.cnblogs.com/mybing/p/13880241.html

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