【POJ

来源:互联网 发布:优化环境工作方案 编辑:程序博客网 时间:2024/06/08 12:21

B - Toy Storage


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.
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.
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 020 2080 8060 6040 405 1015 1095 1025 1065 1075 1035 1045 1055 1085 105 6 0 10 60 04 315 303 16 810 102 12 81 55 540 107 90
Sample Output
Box2: 5Box1: 42: 1

题意:基本和POJ2318相同,输出的是盒子中有i个玩具的个数。

分析:还是叉积判断点和线的位置,需要注意的是对挡板要进行排序。

代码如下:
#include <map>#include <cmath>#include <queue>#include <stack>#include <vector>#include <cstdio>#include <string>#include <cstring>#include <iostream>#include <algorithm>#define LL long longusing namespace std;const int MX = 5e3 + 5;const int mod = 1e9 + 7;const int INF = 2e9 + 5;int num[MX], ans[MX];struct node{    int l, r;}uu[MX];int pan(int x1, int y1, int x2, int y2){    return x1 * y2 - x2 * y1;}bool cmp(node a, node b){    return a.l < b.l;}int main(){    int n, m, x1, x2, y1, y2;    while(~scanf("%d", &n), n){        memset(num, 0, sizeof(num));        scanf("%d%d%d%d%d", &m, &x1, &y1, &x2, &y2);        for(int i = 1; i <= n; i++){            scanf("%d%d", &uu[i].l, &uu[i].r);        }        sort(uu+1, uu+1+n, cmp);        for(int i = 1; i <= m; i++){            int x, y;            scanf("%d%d", &x, &y);            int l = 1;            int r = n+1;            int mid = (l+r) / 2;            while(l < r){                if(pan(x - uu[mid].l, y - y1, x - uu[mid].r, y - y2) > 0)   l = mid + 1;                else r = mid;                mid = (l + r) / 2;            }            num[mid-1]++;        }        memset(ans, 0, sizeof(ans));        for(int i = 0; i <= n; i++){            if(num[i]){                ans[num[i]]++;            }        }        puts("Box");        for(int i = 1; i <= n; i++){            if(ans[i]){                printf("%d: %d\n", i, ans[i]);            }        }    }    return 0;}





原创粉丝点击