【几何】回旋星空 广工校赛

虽然是几何题,但是集合的部分很少
题 意:在n个点中,有多少组三个点满足dis(a,b) = dis(b,c)
思 路:如果暴力枚举三个点,显然会超时。这时候,从题目条件出发。题目只要求两边相等的角的个数,那么考虑每个点作为角的顶点时,其他点与这个点的距离。所有相等的边中任取两条,C(n,2);

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;

int T,n;
struct node {
    double x,y;
    node (double _x=0,double _y=0) {
        x = _x;y = _y;
    }
};

node p[1010];

double getdis(node a,node b) {
    double dx = a.x-b.x;
    double dy = a.y-b.y;
    dx*=dx;
    dy*=dy;
    return sqrt(dx+dy);
}

int main() {
    cin>>T;
    while(T--) {
        scanf("%d",&n);
        for(int i=0;i<n;i++) {
            scanf("%lf%lf",&p[i].x,&p[i].y);
        }
        map<double,int> mp;
        LL ans = 0;
        for(int i=0;i<n;i++) {
            mp.clear();
            for(int j=0;j<n;j++) mp[getdis(p[i],p[j])]++;
            map<double,int>::iterator it = mp.begin();
            while(it!=mp.end()) {
                ans+=(it->second-1)*(it->second);
                it++;
            }
        }
        if(ans) printf("%d\n",ans);
        else puts("WA");
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值