博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2318 向量的叉积二分查找
阅读量:5075 次
发布时间:2019-06-12

本文共 3552 字,大约阅读时间需要 11 分钟。

TOYS
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 9350   Accepted: 4451

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 when he is finished playing with them. They gave John a rectangular box to put his toys in, but John is rebellious and obeys his parents by simply throwing his toys into the box. All the toys get mixed up, and it is impossible for John to find his favorite toys.
 
John's parents came up with the following idea. They put cardboard partitions into the box. Even if John keeps throwing his toys into the box, at least toys that get thrown into different bins stay separated. The following diagram shows a top view of an example toy box.
 
  For this problem, you are asked to determine how many toys fall into each partition as John throws them into the toy box.

Input

The input file contains one or more problems. The first line of a problem consists of six integers, n m x1 y1 x2 y2. The number of cardboard partitions is n (0 < n <= 5000) and the number of toys is m (0 < m <= 5000). The coordinates of the upper-left corner and the lower-right corner of the box are (x1,y1) and (x2,y2), respectively. The following n lines contain two integers per line, Ui Li, indicating that the ends of the i-th cardboard partition is at the coordinates (Ui,y1) and (Li,y2). You may assume that the cardboard partitions do not intersect each other and that they are specified in sorted order from left to right. The next m lines contain two integers per line, Xj Yj specifying where the j-th toy has landed in the box. The order of the toy locations is random. You may assume that no toy will land exactly on a cardboard partition or outside the boundary of the box. The input is terminated by a line consisting of a single 0.

Output

The output for each problem will be one line for each separate bin in the toy box. For each bin, print its bin number, followed by a colon and one space, followed by the number of toys thrown into that bin. Bins are numbered from 0 (the leftmost bin) to n (the rightmost bin). Separate the output of different problems by a single blank line.

Sample Input

5 6 0 10 60 03 14 36 810 1015 301 52 12 85 540 107 94 10 0 10 100 020 2040 4060 6080 80 5 1015 1025 1035 1045 1055 1065 1075 1085 1095 100

Sample Output

0: 21: 12: 13: 14: 05: 10: 21: 22: 23: 24: 2 分析:做题目比看题目容易多了,这JB英文真抽象,判断点在哪一块区域,根据向量的叉积,顺着第一个向量v看,如果w在左边,那么v和w的叉积大于0,否则小于0。
#include 
#include
#include
#include
using namespace std;struct Point{ int x,y; Point(){} Point(int x,int y):x(x),y(y) {}};typedef Point Vector;Vector operator -(Point A,Point B){return Vector(A.x-B.x,A.y-B.y);}int Cross(Vector A,Vector B){ return A.x*B.y-A.y*B.x;}struct Line{ Point A,B;};vector
v;int num[5005];int BinarySearch(Point P,int L,int R){ int mid=(L+R)>>1; if(R-L==1) mid++; Vector v1=v[mid].B-v[mid].A,v2=P-v[mid].A,v3; if(Cross(v1,v2) < 0) { v3=v[mid-1].B-v[mid-1].A; v2=P-v[mid-1].A; if(Cross(v3,v2) > 0) return mid-1; else return BinarySearch(P,L,mid); } else return BinarySearch(P,mid,R);}int main(){ int i,n,m,x1,y1,x2,y2; Line LL; Point P; int flag=0; while(scanf("%d",&n),n) { if(flag) printf("\n"); flag=1; v.clear(); memset(num,0,sizeof(num)); scanf("%d %d %d %d %d",&m,&x1,&y1,&x2,&y2); LL.A.x=x1;LL.A.y=y1;LL.B.x=x1;LL.B.y=y2; v.push_back(LL); for(i=0;i

 

转载于:https://www.cnblogs.com/xiong-/p/3420128.html

你可能感兴趣的文章
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
jQuery如何获得select选中的值?input单选radio选中的值
查看>>
设计模式 之 享元模式
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
15 FFT及其框图实现
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>