zoukankan      html  css  js  c++  java
  • POJ 2398 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.

    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 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

    题意:与poj2318一样 统计每个隔断形成的区域内物品的数量
    思路:叉积+二分 比poj2318多排序和统计的步骤

    代码:
    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cmath>
    #include <string>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    const int inf=0x3f3f3f3f;
    const int maxn=5050;
    int n,m,x,y,xx,yy,tx,ty,U,L;
    int ans[maxn],num[maxn];
    
    struct Point{
        int x,y;
        Point(){}
        Point(int _x,int _y){
            x=_x,y=_y;
        }
        Point operator + (const Point &b) const {
            return Point(x+b.x,y+b.y);
        }
        Point operator - (const Point &b) const {
            return Point(x-b.x,y-b.y);
        }
        int operator * (const Point &b) const {
            return x*b.x+y*b.y;
        }
        int operator ^ (const Point &b) const {
            return x*b.y-y*b.x;
        }
    };
    
    struct Line{
        Point s,e;
        Line(){}
        Line(Point _s,Point _e){
            s=_s,e=_e;
        }
    }line[maxn];
    
    int xmult(Point p0,Point p1,Point p2){
        return (p1-p0)^(p2-p0);
    }
    
    bool cmp(Line a,Line b){
        return a.s.x<b.s.x;
    }
    
    int main(){
        while(scanf("%d",&n)==1 && n){
            scanf("%d%d%d%d%d",&m,&x,&y,&xx,&yy);
            for(int i=0;i<n;i++){
                scanf("%d%d",&U,&L);
                line[i]=Line(Point(U,y),Point(L,yy));
            }
            line[n]=Line(Point(xx,y),Point(xx,yy));
            sort(line,line+n+1,cmp);
            Point p;
            memset(ans,0,sizeof(ans));
            memset(num,0,sizeof(num));
            while(m--){
                scanf("%d%d",&tx,&ty);
                p=Point(tx,ty);
                int l=0,r=n;
                int tmp;
                while(l<=r){
                    int mid=(l+r)>>1;
                    if(xmult(p,line[mid].s,line[mid].e)<0){
                        tmp=mid;
                        r=mid-1;   
                    }
                    else l=mid+1;
                }
                ans[tmp]++;
            }
            for(int i=0;i<=n;i++){
                if(ans[i]>0) num[ans[i]]++;
            }
            printf("Box
    ");
            for(int i=1;i<=n;i++){
                if(num[i]>0) printf("%d: %d
    ",i,num[i]);
            }
        }
        return 0;
    }
    
    
    
     
  • 相关阅读:
    jstl标签的fmt:formatDate格式化日期 String to Date
    Spring MVC使用ModelAndView进行重定向
    配置SpringAop时需要用到的AspectJ表达式
    深入分析Java Web中的编码问题
    第六十五条:不要忽略异常
    第六十四条:努力使失败保持原子性
    第六十三条:在细节消息中包含能捕获失败的信息
    第六十二条:每个方法抛出的异常都要有文档
    第六十一条:抛出与抽象相对应的异常
    第六十条:优先使用标准的异常
  • 原文地址:https://www.cnblogs.com/whdsunny/p/9836444.html
Copyright © 2011-2022 走看看