ZOJ1041

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=41

先选出在圆内的点,然后枚举一个点与圆心连线,作为一个半径,然后枚举枚举每一个点,用叉乘判断是否在同一个半圆内,累加在半圆内的点,取其大者。

#include<iostream>
#include<cmath>
using namespace std;

struct point
{
    int x,y;
};
point p[160];
point pp[160];
double r;

double dis(point a, point b)
{
    return sqrt(pow(a.x-b.x,2) + pow(a.y-b.y,2));
}

int cross(point c, point i, point j)
{
    return (i.x-c.x)*(j.y-c.y)-(j.x-c.x)*(i.y-c.y);
}

int main()
{
    point c;

    while (cin>>c.x>>c.y>>r && r > 0)
    {
        int N;
        cin>>N;
        for (int i=0; i<N; i++) cin>>p[i].x>>p[i].y;

        int num = 0;
        for (int i=0; i<N; i++)
            if (dis(c,p[i]) <= r)
                pp[num++] = p[i];

        int ans = 0;
        for (int i=0; i<num; i++)
        {
            int cnt = 0;
            for (int j=0; j<num; j++)
            {
                if (cross(c,pp[i],pp[j]) >= 0)
                    cnt++;
            }
            ans = max(ans,cnt);
        }
        cout<<ans<<endl;
    }

    return 0;
}


你可能感兴趣的:(ZOJ1041)