Toy Storage
Description
Mom and dad have a problem: their child, Reza, never puts his toys away when he is finished playing with them. They gave Reza a rectangular box to put his toys in. Unfortunately, Reza 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 Reza to find his favorite toys anymore.
Reza's parents came up with the following idea. They put cardboard partitions into the box. Even if Reza keeps throwing his toys into the box, at least toys that get thrown into different partitions stay separate. The box looks like this from the top:

We want for each positive integer t, such that there exists a partition with t toys, determine how many partitions have t, toys.
Reza's parents came up with the following idea. They put cardboard partitions into the box. Even if Reza keeps throwing his toys into the box, at least toys that get thrown into different partitions stay separate. The box looks like this from the top:

We want for each positive integer t, such that there exists a partition with t toys, determine how many partitions have t, toys.
Input
The input consists of a number of cases. The first line consists of six integers n, m, x1, y1, x2, y2. The number of cardboards to form the partitions is n (0 < n <= 1000) and the number of toys is given in m (0 < m <= 1000). 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 each consists of two integers Ui Li, indicating that the ends of the ith cardboard is at the coordinates (Ui, y1) and (Li, y2). You may assume that
the cardboards do not intersect with each other. The next m lines each consists of two integers Xi Yi specifying where the ith toy has landed in the box. You may assume that no toy will land on a cardboard.
A line consisting of a single 0 terminates the input.
A line consisting of a single 0 terminates the input.
Output
For each box, first provide a header stating "Box" on a line of its own. After that, there will be one line of output per count (t > 0) of toys in a partition. The value t will be followed by a colon and a space, followed the number of partitions containing
t toys. Output will be sorted in ascending order of t for each box.
Sample Input
4 10 0 10 100 0 20 20 80 80 60 60 40 40 5 10 15 10 95 10 25 10 65 10 75 10 35 10 45 10 55 10 85 10 5 6 0 10 60 0 4 3 15 30 3 1 6 8 10 10 2 1 2 8 1 5 5 5 40 10 7 9 0
Sample Output
Box 2: 5 Box 1: 4 2: 1
题意:n个纸板,m个玩具,求含1~m个玩具的区域有多少个
二分法判断每条直线,当判断点在直线的哪侧时,用到向量叉乘
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int s[2000];
int cnt[2000];
struct point{
int x,y;
};
struct line{
point A,B;
}Line[1005];
int cmp(line tmp1,line tmp2)
{
if(tmp1.A.x!=tmp2.A.x) return tmp1.A.x<tmp2.A.x;
else return tmp1.B.x<tmp2.B.x;
}
int judge(point v,int k)
{
int x0,y0,x1,y1,x2,y2;
x0=v.x; y0=v.y;
x1=Line[k].A.x;y1=Line[k].A.y;
x2=Line[k].B.x;y2=Line[k].B.y;
return (x0-x2)*(y1-y2)-(x1-x2)*(y0-y2);
}
void Bsearch(point v,int n)
{
int l=0,r=n,mid;
while(l<r)
{
mid=(l+r)>>1;
if(judge(v,mid)>0) l=mid+1;
else r=mid;
}
if(judge(v,l)<0) s[l]++;
else s[l+1]++;
}
int main()
{
int n,m,x1,x2,y1,y2;
int t1,t2,a,b;
while(scanf("%d",&n)&&n)
{
memset(s,0,sizeof(s));
memset(cnt,0,sizeof(cnt));
scanf("%d%d%d%d%d",&m,&x1,&y1,&x2,&y2);
for(int i=0; i < n ; i++)
{
scanf("%d%d",&t1,&t2);
Line[i].A.x=t1;
Line[i].A.y=y1;
Line[i].B.x=t2;
Line[i].B.y=y2;
}
sort(Line,Line+n,cmp);
point v;
for(int i=0 ; i < m ; i++)
{
scanf("%d%d",&v.x,&v.y);
Bsearch(v,n-1);
}
for(int i=0; i <= n ; i++)
{
cnt[s[i]]++;
}
printf("Box\n");
for(int i=1 ; i < 1005 ; i++)
{
if(cnt[i] != 0) printf("%d: %d\n",i,cnt[i]);
}
}
return 0;
}
本文介绍了一个关于玩具存储的问题,通过使用纸板将玩具箱分割成多个区域,确保不同数量的玩具能够保持分离。文章提供了使用二分法和向量叉乘来解决此问题的算法实现。
867

被折叠的 条评论
为什么被折叠?



