`

Jack Straws 线段相交加并查集

阅读更多
/*开始的时候并查集写错了。就是有传递闭包的关系。不错的一个题。*/

#include <stdio.h>
#define eps 1e-8
double max(double a,double b)
{
    if(b-a<-eps) return a;
    else return b;
}
double min(double a,double b)
{
    if(b-a<-eps) return b;
    else return a;
}
struct point
{
    double x,y;
};
struct LINE
{
    point p1,p2;
}line[14];
int f[14];
double multi(point p0,point p1,point p2)
{
    return ((p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y));
}
bool cross(LINE a,LINE b)
{
    if(min(a.p1.x,a.p2.x)-max(b.p1.x,b.p2.x)<eps
            &&min(a.p1.y,a.p2.y)-max(b.p1.y,b.p2.y)<eps
            &&min(b.p1.x,b.p2.x)-max(a.p1.x,a.p2.x)<eps
            &&min(b.p1.y,b.p2.y)-max(a.p1.y,a.p2.y)<eps
            &&multi(a.p1,a.p2,b.p1)*multi(a.p1,a.p2,b.p2)<=eps
            &&multi(b.p1,b.p2,a.p1)*multi(b.p1,b.p2,a.p2)<=eps)
        return true;
    else return false;
}
int find(int x)
{
    if(x!=f[x])
        f[x]=find(f[x]);
    return f[x];
}
void unit(int x,int y)
{
    x=find(x);
    y=find(y);
    if(x==y) return ;
    else f[y]=x;
}
int main()
{
    int n,r,t;
    while(scanf("%d",&n)==1&&n)
    {
        for(int i=1; i<=n; i++)
            f[i]=i;
        for(int i=1; i<=n; i++)
            scanf("%lf%lf%lf%lf",&line[i].p1.x,&line[i].p1.y,&line[i].p2.x,&line[i].p2.y);
        for(int i=1; i<=n; i++)
            for(int j=i+1; j<=n; j++)
            {
                if(cross(line[i],line[j]))
                    unit(i,j);
            }
        while(scanf("%d%d",&r,&t)==2)
        {
            if(r==0&&t==0) break;
            if(find(r)==find(t))
                printf("CONNECTED\n");
            else printf("NOT CONNECTED\n");
        }
    }
    return 0;
}

 
更多详细信息请查看java教程网 http://www.itchm.com/forum-59-1.html

  


  
分享到:
评论

相关推荐

    Jack Straws.cpp

    In the game of Jack Straws, a number of plastic or wooden ``straws" are dumped on the table and players try to remove them one-by-one without disturbing the other straws. Here, we are only concerned ...

    poj 1127 Jack Straws.md

    poj 1127 Jack Straws.md

    常用实验仪器名称中英文对照表

    12. **冷凝器 (Condenser)**:用于冷却蒸汽并使其凝结回液体的设备,常见于蒸馏过程中。 13. **圆颈烧瓶 (Round-Bottom Flask)**:常用于蒸馏和回流反应,因其形状可方便安装冷凝器。 14. **试剂瓶 (Reagent ...

    常用实验仪器名称中英文对照表借鉴.pdf

    36. 胖肚吸管(Straws):25ml×1,50ml×2,10ml×1 37. 容量瓶(Volumetric flask):100ml×2 38. 乳钵(Mortar):1个,50ml×4 39. 洗耳球(Ear washing bulb):吸取和排放液体。 40. 碘量瓶(Iodine number ...

    初三关于保护环境的英语作文.pdf

    尤其是我们这一代青少年,作为未来的主人翁,更应该深刻理解保护环境的重要性,并付诸实际行动。下面,我将结合初三学生的英语作文,来探讨环境保护的必要性及其具体措施。 首先,我们不得不面对一个严峻的现实——...

Global site tag (gtag.js) - Google Analytics