hdu 6055 Regular polygon

152 篇文章 0 订阅
5 篇文章 0 订阅

题意: 给出若干个点,找到有多少个正多边形

思路:

构造了下,发现在整数点上似乎没有找到除了正四边形之外的正多边形。那么就枚举一下就好了!


#include <stdio.h>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <set>
using namespace std;
struct node {
    int x, y;
    bool friend operator < (node a, node b) {
        if(a.x != b.x)
            return a.x < b.x;
        return a.y < b.y;
    }
} nod[505];
int main (void) {
    ios::sync_with_stdio(false);
    int n;
    while(cin>>n) {
        set<node> st;
        for(int i=1; i<=n; ++i) {
            cin>>nod[i].x>>nod[i].y;
            nod[i].x *= 2;
            nod[i].y *= 2;
            st.insert(nod[i]);
        }
        sort(nod+1, nod+1+n);
        int ans = 0;
        for(int i=1; i<=n; ++i) {
            for(int j=1; j<i; ++j) {
                
                int x = (nod[i].x + nod[j].x) / 2;
                int y = (nod[i].y + nod[j].y) / 2;
                int y1 = x - nod[i].x + y;
                int x1 = nod[i].y - y + x;
                int y2 = nod[i].x - x + y;
                int x2 = y - nod[i].y + x;
                if(st.count((node){x1,y1}) && st.count((node){x2,y2}))
                    ans ++;
            }
        } 
        
        cout<<ans/2<<endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值