poj2318 TOYS 【计算几何】【点和线的关系】

题目链接:http://poj.org/problem?id=2318

题目大意:给你n,m,x1,y1,x2,y2表示的分别是n个线,m个点,(x1,y1)表示的是矩形左上角那个点,(x2,y2)表示的是矩形右下角那个点。

然后给出n个线(L)的x坐标L.s.x,L.e.x,就相当于是给出了线的位置,下面给出m个点的坐标。

最后问n条线分成的n+1个区域内各有多少个点。

题目不是很难,不过与二分结合起来还是有点意思的。

注意叉乘的性质,在什么时候叉乘的结果会是小于0什么时候会是大于0。

如果是顺时针的话叉乘的结果就是大于0,如果是逆时针的话叉乘结果小于0。

#include<iostream>
#include<stdio.h>
#include<cstring>
using namespace std;
struct point {
    double x;double y;
    point(const double &x = 0, const double &y = 0):x(x), y(y){} //注意最后两个字母别打错了
    void in(){scanf("%lf%lf",&x,&y);}
    void out()const{ printf("%.2lf %.2lf\n",x,y);}
}s,e;

struct line{
    point s;
    point e;
};

int n,m; //n条线(分成n+1个区域) m个玩具 最后输出每个区域内的玩具个数
line L[5005];
point P;
int cnt[5005];

//计算叉乘(P1-P0)X(P2-P0)
double xmult(point p1,point p2,point p0){
    return (p1.x-p0.x)*(p2.y-p0.y) - (p1.y-p0.y)*(p2.x-p0.x);
}

void B_search(point P){
    int l=0,r=n-1,mid;
    while(l<r){
        mid = (l+r)/2;
        if(xmult(P,L[mid].s,L[mid].e) > 0) l = mid + 1;
        else r = mid;
}
    if(xmult(P,L[l].s,L[l].e)<0) cnt[l]++;
    else cnt[l+1]++;
}

int main ()
{
    while(~scanf("%d",&n)){
        memset(cnt,0,sizeof(cnt));
        if(n==0) break;
        scanf("%d %lf %lf %lf %lf",&m,&s.x,&s.y,&e.x,&e.y);
        for(int i=0;i<n;i++){
            double t1,t2;
            scanf("%lf %lf",&t1,&t2);
            L[i].s.x=t1;
            L[i].s.y=s.y;
            L[i].e.x=t2;
            L[i].e.y=e.y;
        }
        for(int i=0;i<m;i++){
            scanf("%lf %lf",&P.x,&P.y);
            B_search(P);
        }
        for(int i=0;i<=n;i++) cout<<i<<": "<<cnt[i]<<endl;
        cout<<endl;
    }
}
时间: 2024-11-05 22:01:52

poj2318 TOYS 【计算几何】【点和线的关系】的相关文章

POJ-2318 TOYS 计算几何 判断点在线段的位置

题目链接:https://cn.vjudge.net/problem/POJ-2318 题意 在一个矩形内,给出n-1条线段,把矩形分成n快四边形 问某些点在那个四边形内 思路 二分+判断点与位置关系 提交过程 WA*n x1和x2,y1和y2在复制的时候没分清(哭 WA 可能存在二分问题? AC 代码 #define PI 3.1415926 #include <cmath> #include <cstdio> #include <vector> #include &

【POJ】2318 TOYS ——计算几何+二分

TOYS Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 10281   Accepted: 4924 Description Calculate the number of toys that land in each bin of a partitioned toy box. Mom and dad have a problem - their child John never puts his toys away w

poj 2398 Toy Storage (计算几何,判断点和线段关系)

http://poj.org/problem?id=2398 题意大概是说将一个盒子用n个board分成n+1 部分 然后往里面放toy,给定盒子,board,和toy的坐标 问所有的toy放完后,有多少部分中有t个toy; 简单计算几何 需要判断的是点和直线的关系. 判断 某一点在直线左右侧 左右方向是相对前进方向的,只要指定了前进方向就可以知道左右(比如指定前进方向是从直线的起点到终点).判断点在直线的左侧还是右侧是计算几何里面的一个最基本算法.使用矢量来判断. 定义:平面上的三点P1(x1

poj 2318 TOYS(计算几何 点与线段的关系)

TOYS Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 12015   Accepted: 5792 Description Calculate the number of toys that land in each bin of a partitioned toy box. Mom and dad have a problem - their child John never puts his toys away w

[poj2318]TOYS(直线与点的位置关系)

解题关键:计算几何入门题,通过叉积判断. 两个向量的关系: P*Q>0,Q在P的逆时针方向: P*Q<0,Q在P的顺时针方向: P*Q==0,Q与P共线. #include<cstdio> #include<cstring> #include<algorithm> #include<cstdlib> #include<cmath> #include<iostream> using namespace std; typede

POJ2318 TOYS (计算几何)

### 题目链接 ### 题目大意: 给定一个矩形,这个矩形被 \(n\) 条线段(端点分别在矩形上下边界上)切割成 \(n+1\) 个块.再给你 \(m\) 个物品的坐标,问每个块中会有多少个物品,保证物品放置位置合法. 分析: 一个物品在一个块中时,他一定夹在两个分界线中间,且在左分界线的右边,右分界线的左边.故按图中那样,将物品连接某个边界下端,构成一个向量,再判断 蓝色向量 与 紫色向量 的位置关系,进行叉积即可.故二分找到第一个 物品向量 \(×\) 边界向量 为负的位置,即为该物品所

poj 2398 Toy Storage 【计算几何】【点和线的关系】

题目链接:http://poj.org/problem?id=2398 题目大意:这次的题目和前一道题目几乎是一样的,不同之处在于这次给出的线不是有顺序的,还有就是输出的时候有一个优化. 基本的分析见我上篇博客:http://blog.csdn.net/u010468553/article/details/39474007 注意sort函数中cmp的编写还有后期数据的整理 #include<iostream> #include<stdio.h> #include<cstrin

计算几何——点线关系(叉积)poj2318

#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<cmath> using namespace std; const double esp = 1e-8; const double inf = 1e20; const double pi = acos(-1.0); const int maxp = 1010; int sgn(dou

POJ2318 TOYS[叉积 二分]

TOYS Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 14433   Accepted: 6998 Description Calculate the number of toys that land in each bin of a partitioned toy box. Mom and dad have a problem - their child John never puts his toys away w