POJ 1106 极角排序

简介:

题意给出一些点片段圆心为t半径为r的半圆最大能覆盖多少个点。

首先在输入的时候把距离大于半径的点筛出去。剩余点通过极角排序然后枚举半圆的一条边通过该点能覆盖的点数取最大值就可以了。

#include <iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
struct point
{
    int x,y;
};
int Direction(point a,point b,point c)
{
    return (b.x-a.x)*(c.y-a.y)-(b.y-a.y)*(c.x-a.x);
}
int adistan(point a,point b)
{
    return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);
}
point t,data[2000];
bool cmp(point a,point b)
{
    if(Direction(t,a,b)>=0)
        return 1;
    return 0;
}
int main()
{
    double r;
    int n;
    while(~scanf("%d%d%lf",&t.x,&t.y,&r),r>=0)
    {
        scanf("%d",&n);
        int w=0,maxnum=0;
        while(n--)
        {
            point temp;
            scanf("%d%d",&temp.x,&temp.y);
            if((double)adistan(temp,t)<=r*r)
                data[w++]=temp;
        }
        sort(data,data+w,cmp);
        for(int i=w; i<w+w; i++)
            data[i]=data[i-w];
        for(int i=0; i<w; i++)
        {
            int num=1;
            for(int j=i+1; j<w+i; j++)
            {
                if(Direction(t,data[i],data[j])<0)
                    break;
                num++;
            }
            maxnum=max(maxnum,num);
        }
        printf("%d\n",maxnum);
    }
    return 0;
}


目录
相关文章
|
6月前
POJ-2245-Lotto
POJ-2245-Lotto
28 0
POJ 1936 All in All
POJ 1936 All in All
75 0
|
算法 数据建模 机器学习/深度学习
poj 3664
http://poj.org/problem?id=3664 进行两轮选举,第一轮选前n进入第二轮,第二轮选最高   #include #include using namespace std; struct vote { int a,b; int c; ...
735 0
poj 1455
Description n participants of > sit around the table. Each minute one pair of neighbors can change their places.
618 0
poj-3094-quicksum
http://poj.org/problem?id=3094 很简单 #include #include using namespace std; int main() { string a; int sum=0; while(getline(cin...
576 0
poj-1006-Biorhythms
Description 人生来就有三个生理周期,分别为体力、感情和智力周期,它们的周期长度为23天、28天和33天。每一个周期中有一天是高峰。在高峰这天,人会在相应的方面表现出色。例如,智力周期的高峰,人会思维敏捷,精力容易高度集中。
621 0