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


链接:传送门

题意:给出 n 个线段找到交点个数

思路:数据量小,直接暴力判断所有线段是否相交


/*************************************************************************
    > File Name: hdu1086.cpp
    > Author:    WArobot 
    > Blog:      http://www.cnblogs.com/WArobot/ 
    > Created Time: 2017年05月07日 星期日 23时34分32秒
 ************************************************************************/

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

#define eps 1e-10
struct point{ double x,y; };
struct V{ point s,e; };

bool inter(point a,point b,point c,point d){
    if( min(a.x,b.x) > max(c.x,d.x) ||
        min(a.y,b.y) > max(c.y,d.y) ||
        min(c.x,d.x) > max(a.x,b.x) ||
        min(c.y,d.y) > max(a.y,b.y)
    )return 0;
    double h,i,j,k;
    h = (b.x-a.x)*(c.y-a.y) - (b.y-a.y)*(c.x-a.x);
    i = (b.x-a.x)*(d.y-a.y) - (b.y-a.y)*(d.x-a.x);
    j = (d.x-c.x)*(a.y-c.y) - (d.y-c.y)*(a.x-c.x);
    k = (d.x-c.x)*(b.y-c.y) - (d.y-c.y)*(b.x-c.x);
    return h*i<=eps && j*k<=eps;
}
int main(){
    int n;
    V vct[110];
    while(~scanf("%d",&n) && n){
        for(int i=0;i<n;i++)    scanf("%lf%lf%lf%lf",&vct[i].s.x,&vct[i].s.y,&vct[i].e.x,&vct[i].e.y);
        int cnt = 0;
        for(int i=0;i<n;i++){
            for(int j=i+1;j<n;j++){
                if( inter(vct[i].s,vct[i].e,vct[j].s,vct[j].e) )    cnt++;
            }
        }
        printf("%d\n",cnt);
    }
    return 0;
}

转载于:https://www.cnblogs.com/WArobot/p/6822927.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值