HDU 4082 Hou Yi's secret --枚举

题意: 给n个点,问最多有多少个相似三角形(三个角对应相等)。

解法: O(n^3)枚举点,形成三角形,然后记录三个角,最后按三个角度依次排个序,算一下最多有多少个连续相等的三元组就可以了。

注意:在同一个坐标的两点只算一次,所以要判一下。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#define eps 1e-8
using namespace std;
#define N 100017

struct Point{
    double x,y;
    Point(double x=0, double y=0):x(x),y(y) {}
    void input() { scanf("%lf%lf",&x,&y); }
};
typedef Point Vector;
int dcmp(double x) {
    if(x < -eps) return -1;
    if(x > eps) return 1;
    return 0;
}
template <class T> T sqr(T x) { return x * x;}
Vector operator + (Vector A, Vector B) { return Vector(A.x + B.x, A.y + B.y); }
Vector operator - (Vector A, Vector B) { return Vector(A.x - B.x, A.y - B.y); }
Vector operator * (Vector A, double p) { return Vector(A.x*p, A.y*p); }
Vector operator / (Vector A, double p) { return Vector(A.x/p, A.y/p); }
bool operator < (const Point& a, const Point& b) { return a.x < b.x || (a.x == b.x && a.y < b.y); }
bool operator >= (const Point& a, const Point& b) { return a.x >= b.x && a.y >= b.y; }
bool operator <= (const Point& a, const Point& b) { return a.x <= b.x && a.y <= b.y; }
bool operator == (const Point& a, const Point& b) { return dcmp(a.x-b.x) == 0 && dcmp(a.y-b.y) == 0; }
double Dot(Vector A, Vector B) { return A.x*B.x + A.y*B.y; }
double Length(Vector A) { return sqrt(Dot(A, A)); }
double Angle(Vector A, Vector B) { return (Dot(A, B) / Length(A) / Length(B)); }
double Cross(Vector A, Vector B) { return A.x*B.y - A.y*B.x; }

//data segment
struct Tri{
    double A[3];
    Tri(double x,double y,double z)
    { A[0] = x, A[1] = y, A[2] = z; }
    Tri(){}
    bool operator <(const Tri& a)const
    {
        if(dcmp(A[0]-a.A[0]) == 0)
        {
            if(dcmp(A[1]-a.A[1])==0) return dcmp(A[2]-a.A[2])<0;
            return dcmp(A[1]-a.A[1])<0;
        }
        return dcmp(A[0]-a.A[0])<0;
    }
}t[3005];
bool operator == (const Tri& a,const Tri& b) { return dcmp(a.A[0]-b.A[0]) == 0 && dcmp(a.A[1]-b.A[1]) == 0 && dcmp(a.A[2]-b.A[2]) == 0; }
Point p[25];
int tot,n;
//data ends
int mp[300][300];
int main()
{
    int i,j,k;
    int a[5];
    while(scanf("%d",&n)!=EOF && n)
    {
        memset(mp,0,sizeof mp);
        tot = 0;
        int cntt=1;
        for(i=1;i<=n;i++)
        {
            int a,b;scanf("%d%d",&a,&b);
            if(mp[a+100][b+100]==0)
                p[cntt].x=a,p[cntt++].y=b;
            mp[a+100][100+b]=1;
        }
        n=cntt-1;
        for(i=1;i<=n;i++)
        {
            for(j=i+1;j<=n;j++)
            {
                for(k=j+1;k<=n;k++)
                {
                    Point A = p[i], B = p[j], C = p[k];
                    if(A == B || A == C || B == C) continue;
                    if(dcmp(Cross(B-A,C-A)) == 0) continue;
                    double ang1 = Angle(B-A,C-A);
                    double ang2 = Angle(A-B,C-B);
                    double ang3 = Angle(A-C,B-C);
                    double A1 = min(ang1,min(ang2,ang3));
                    double A3 = max(ang1,max(ang2,ang3));
                    double A2 = ang1+ang2+ang3-A1-A3;
                    t[++tot] = Tri(A1,A2,A3);
                }
            }
        }
        sort(t+1,t+tot+1);
        int Maxi = (tot!=0), cnt = 1;
        for(i=2;i<=tot;i++)
        {
            if(t[i] == t[i-1])
                cnt++;
            else
                cnt = 1;
            Maxi = max(Maxi,cnt);
        }
        cout<<Maxi<<endl;
    }
    return 0;
}

HDU 4082 Hou Yi's secret --枚举

时间: 2024-11-03 03:25:34

HDU 4082 Hou Yi's secret --枚举的相关文章

HDU - 4082 Hou Yi&#39;s secret

题意:射箭落在n个点,任取三点可构成一个三角形,问最大的相似三角形集(一组互相相似的三角形)的个数. 分析: 1.若n个点中有相同的点,要去重,题目中说射箭会形成洞,任选三个洞构成三角形,因此射在同一点只形成一个洞. 2.二进制枚举子集选出三个点,判断能否构成三角形. 3.因为边长可能为小数,因此用边长的平方判断相似. (1)将比较的两个三角形三边分别排序 (2)tmpx[0] / tmpy[0] = tmpx[1] / tmpy[1] = tmpx[2] / tmpy[2],即若满足tmpx[

[HDU 4082] Hou Yi&#39;s secret (简单计算几何)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4082 题目大意: 给你n个点,问能最多构成多少个相似三角形. 用余弦定理,计算三个角度,然后暴力数有多少个,更新答案. 代码: 1 #include <cstdio> 2 #include <cmath> 3 #include <algorithm> 4 #include <cstring> 5 #include <vector> 6 #includ

HDU 4082 Hou Yi&#39;s secret-求相似三角形的最大个数-(坑货)

题意:找相似三角形的最大个数.注意不是所有相似三角形的个数,而是不同类相似三角形 中个数最大的 分析: 之前理解成了所有相似三角形的个数,所以尽管考虑了所有的特殊情况以及精度问题还是不停的wawawa,甚至重新写了一遍不用余弦来判断而是用边.绝望之中仔细看别人的代码,原来题意理解错了. 这题的收获: 1.三角形相似的判定:用余弦定理.或者边成比例.最好用边,然后判定的时候不用比值,用乘积,这样就不存在精度问题. 2.耐心.对自己有信心. 代码: #include<iostream> #incl

hdu4082 Hou Yi&#39;s secret 暴力

http://acm.hdu.edu.cn/showproblem.php?pid=4082 Hou Yi's secret Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3006    Accepted Submission(s): 710 Problem Description Long long ago, in the time

HDU 4930 Fighting the Landlords(暴力枚举+模拟)

HDU 4930 Fighting the Landlords 题目链接 题意:就是题中那几种牌型,如果先手能一步走完,或者一步让后手无法管上,就赢 思路:先枚举出两个人所有可能的牌型的最大值,然后再去判断即可 代码: #include <cstdio> #include <cstring> #include <algorithm> using namespace std; struct Player { int rank[15]; } p1, p2; int t, h

hdu 1882 Strange Billboard(位运算+枚举)

http://acm.hdu.edu.cn/showproblem.php?pid=1882 感觉非常不错的一道题. 给一个n*m(1<=n,m<=16)的矩阵,每一个格子都有黑白两面,当翻一个格子时,它的上下左右都要翻转,问最后使格子全变为白色的最少翻转步数. 仅仅需枚举第一行的状态即可,由于对于第i(i>=2)行j列翻转情况受上一行的制约,仅仅有当上一行也是'X'的时候,该行j列才干翻转,使i-1行j列变为'.',否则i行j列不能翻转.依次进行下去,当最后一行全变为白色,说明翻转成功

hdu 2489 Minimal Ratio Tree(dfs枚举 + 最小生成树)~~~

题目: 链接:点击打开链接 题意: 输入n个点,要求选m个点满足连接m个点的m-1条边权值和sum与点的权值和ans使得sum/ans最小,并输出所选的m个点,如果有多种情况就选第一个点最小的,如果第一个点也相同就选第二个点最小的........ 思路: 求一个图中的一颗子树,使得Sum(edge weight)/Sum(point weight)最小~ 数据量小,暴力枚举~~~~~dfs暴力枚举C(M,N)种情况. 枚举出这M个点之后,Sum(point weight)固定,进行prim或者K

HDU 5371 Hotaru&#39;s problem(manacher + 枚举啊)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5371 Problem Description Hotaru Ichijou recently is addicated to math problems. Now she is playing with N-sequence. Let's define N-sequence, which is composed with three parts and satisfied with the foll

hdu 4932 Miaomiao&#39;s Geometry 暴力枚举

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4932 Miaomiao's Geometry Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 694    Accepted Submission(s): 180 Problem Description There are N point