HDU 1086 You can Solve a Geometry Problem too(判断线段相交)

题目地址:HDU 1086

就这么一道仅仅判断线段相交的题目写了2k多B的代码。。是不是有点浪费。。。但是我觉得似乎哪里也优化不了了。。。。

判断线段相交就是利用的叉积。假如现在两条线段分别是L1和L2,先求L1和L2两个端点与L1的某个端点的向量的叉积,如果这两个的叉积的乘积小于0的话,说明L1在是在L2两个端点之间的,但此时并不保证一定相交。此时需要用同样的方法去判断L2是否在L1的两个端点之间,如果L2也在L1的两个端点之间的话,那就足以说明L1与L2相交。但是这题还需要判断是否端点也相交,当时没想到这点,导致白白调了一段时间。。至于端点的判断,我也没想到什么好的方法。。就直接暴力判断4个端点是否是同一点的情况。。

搓代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>

using namespace std;
#define eqs 1e-10
struct node
{
    double x, y;
} point[1000];
node xiang(node a, node b)
{
    node f1;
    f1.x=a.x-b.x;
    f1.y=a.y-b.y;
    return f1;
}
int cross(node a, node b)
{
    double c;
    c= a.x*b.y-a.y*b.x;
    if(c>0)
        return 1;
    else if(c==0)
        return 0;
    else
        return -1;
}
int dcmp(double x, double y)
{
    if(fabs(x-y)<=eqs)
        return 1;
    return 0;
}
int main()
{
    int n, i, j;
    int c1, c2, c3, c4, ans;
    while(scanf("%d",&n)!=EOF&&n)
    {
        ans=0;
        for(i=0; i<n; i++)
        {
            scanf("%lf%lf%lf%lf",&point[2*i].x,&point[2*i].y,&point[2*i+1].x,&point[2*i+1].y);
        }
        for(i=0; i<n; i++)
        {
            for(j=0; j<i; j++)
            {
                c1=cross(xiang(point[2*i],point[2*i+1]),xiang(point[2*j],point[2*i+1]));
                c2=cross(xiang(point[2*i],point[2*i+1]),xiang(point[2*j+1],point[2*i+1]));
                c3=cross(xiang(point[2*j],point[2*j+1]),xiang(point[2*i],point[2*j+1]));
                c4=cross(xiang(point[2*j],point[2*j+1]),xiang(point[2*i+1],point[2*j+1]));
                if(c1*c2<0&&c3*c4<0)
                    ans++;
                else if(dcmp(point[2*i].x,point[2*j].x)&&dcmp(point[2*i].y,point[2*j].y))
                {
                    ans++;
                }
                else if(dcmp(point[2*i].x,point[2*j+1].x)&&dcmp(point[2*i].y,point[2*j+1].y))
                {
                    ans++;
                }
                else if(dcmp(point[2*i+1].x,point[2*j+1].x)&&dcmp(point[2*i+1].y,point[2*j+1].y))
                {
                    ans++;
                }
                else if(dcmp(point[2*i+1].x,point[2*j].x)&&dcmp(point[2*i+1].y,point[2*j].y))
                {
                    ans++;
                }
            }
        }
        printf("%d\n",ans);
    }
    return 0;
}

HDU 1086 You can Solve a Geometry Problem too(判断线段相交),布布扣,bubuko.com

时间: 2024-08-02 02:48:24

HDU 1086 You can Solve a Geometry Problem too(判断线段相交)的相关文章

hdu 1086 You can Solve a Geometry Problem too (几何)

You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 6932    Accepted Submission(s): 3350 Problem Description Many geometry(几何)problems were designed in the ACM/I

hdu 1086 You can Solve a Geometry Problem too(求线段相交点个数 模板)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1086 ---------------------------------------------------------------------------------------------------------------------------------------------------------- 欢迎光临天资小屋:http://user.qzone.qq.com/593830943

hdoj-1086-You can Solve a Geometry Problem too 判断线段是否相交

You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 8683 Accepted Submission(s): 4227 Problem Description Many geometry(几何)problems were designed in the ACM/ICPC.

HDU 1086 [You can Solve a Geometry Problem too] 计算几何

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1086 题目大意:给N条线段,问这些线段共有多少交点,多线交于一点要重复计算. 关键思想:叉乘可根据右手法则判断正负,相互跨越或者一条线段端点在另一条线段上则交点数+1. 代码如下: #include <iostream> using namespace std; const int MAXN=110; struct point{ double x,y; }; struct line{ point

hdoj 1086 You can Solve a Geometry Problem too 【计算几何】

题意:就是判断各线段之间有没有交点. 判断两线段相交,要运用到叉积.两个线段相交肯定相互跨越,假设一个条线段(p1p2),另一条是(q1q2),那么p1p2肯定在q1q2线段的两侧,那么运用叉积如果p1p2跨越q1q2的话(q1p1)x(q2p2)<= 0.同样也要验证 q1q2是不是也跨越p1p2,注意:p1p2跨越q1q2,不代两个线段相交,可能是p1p2跨越直线q1q2,所以说还是要再次判断q1q2是不是跨越p1p2 还有另外一种比较容易理解的解法: 就是如果两个线段相交,那么两线段两端端

You can Solve a Geometry Problem too(线段求交)

http://acm.hdu.edu.cn/showproblem.php?pid=1086 You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 8861    Accepted Submission(s): 4317 Problem Description Many

HDU 1086You can Solve a Geometry Problem too(判断两条选段是否有交点)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1086 判断两条线段是否有交点,我用的是跨立实验法: 两条线段分别是A1到B1,A2到B2,很显然,如果这两条线段有交点,那么可以肯定的是: A1-B1,A2-B1这两个向量分别在B2-B1的两边,判断是不是在两边可以用向量的叉积来判断,这里就不说了,同理B1-A1,B2-A1在A2-A1的两边,当同时满足这两个条件时,说明这两条线段是有交点的. 1 #include<cstdio> 2 #incl

HDOJ 1086 You can Solve a Geometry Problem too

打算好好练练计算几何. 昨天经过反省决定戒掉一做题就看题解的恶习,结果今天做题就抓瞎了... 因为刚开始有很多公式方法不知道,所以完全自己做就毫无思路= =.还是忍住没看题解,打开了手边的CLRS,我本来以为这里面关于计算几何的篇幅很少,应该讲不了什么. 然后我发现我错了,经典就是经典.关于判断线段相交的方法,讲的非常清楚,每一步包括叉乘等细节都有很详细的讲解. 看完之后手动敲,1A,代码: #include <stdio.h> #include <math.h> #include

HDU 1086:You can Solve a Geometry Problem too

You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6997    Accepted Submission(s): 3385 Problem Description Many geometry(几何)problems were designed in the ACM/