http://poj.org/problem?id=2398
Toy Storage
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 3831 | Accepted: 2256 |
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
Source
--------------------------------------------------------------------------------
和前面一道题很像,就是对线段排下序就没了

#include <stdio.h> #include <string.h> #include <algorithm> #include <iostream> #include <stdlib.h> #include <math.h> #define MAXX 1005 #define eps 1e-8 using namespace std; typedef struct point { double x,y; }point; typedef struct line { point a,b; }line; point p[MAXX]; line li[MAXX]; int num[MAXX]; bool xy(double x,double y){ return x<y-eps; } bool dy(double x,double y){ return x>y+eps; } bool xyd(double x,double y){ return x<y+eps; } bool dyd(double x,double y){ return x>y-eps; } bool dd(double x,double y){ return fabs(x-y)<eps; } double crossProduct(point a,point b,point c) { return (c.x-a.x)*(b.y-a.y)-(c.y-a.y)*(b.x-a.x); } bool cmp(line a,line b) { double minx=min(a.a.x,a.b.x); double miny=min(b.a.x,b.b.x); if(dd(minx,miny)) { return max(a.a.x,a.b.x)<max(b.a.x,b.b.x); } return minx<miny; } void BSearch(point a,int n) { int l=0,r=n-1; while(l<r) { int mid=(l+r)/2; if(crossProduct(li[mid].a,a,li[mid].b)>0) { l=mid+1; } else { r=mid; } } if(crossProduct(li[l].a,a,li[l].b)<0) { num[l]++; } else num[l+1]++; } int main() { int n,m,i,j,k,t; int x1,x2,y1,y2; double u,l; point tmp; while(scanf("%d",&n)!=EOF&&n) { scanf("%d%d%d%d%d",&m,&x1,&y1,&x2,&y2); memset(num,0,sizeof(num)); for(i=0;i<n;i++) { scanf("%lf%lf",&u,&l); li[i].a.x=u; li[i].a.y=y1; li[i].b.x=l; li[i].b.y=y2; } sort(li,li+n,cmp); for(i=0;i<m;i++) { scanf("%lf%lf",&p[i].x,&p[i].y); BSearch(p[i],n); } sort(num,num+n); int str[MAXX]; memset(str,0,sizeof(str)); for(i=0;i<=n;i++) { str[num[i]]++; } printf("Box\n"); for(i=1;i<MAXX;i++) { if(str[i]) { printf("%d: %d\n",i,str[i]); } } } return 0; }
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET制作智能桌面机器人:结合BotSharp智能体框架开发语音交互
· 软件产品开发中常见的10个问题及处理方法
· .NET 原生驾驭 AI 新基建实战系列:向量数据库的应用与畅想
· 从问题排查到源码分析:ActiveMQ消费端频繁日志刷屏的秘密
· 一次Java后端服务间歇性响应慢的问题排查记录
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(四):结合BotSharp
· 一个基于 .NET 开源免费的异地组网和内网穿透工具
· 《HelloGitHub》第 108 期
· Windows桌面应用自动更新解决方案SharpUpdater5发布
· 我的家庭实验室服务器集群硬件清单