hdu 4419 矩形面积并

#include <iostream>
#include<string.h>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<map>
using namespace std;
typedef __int64 LL;
const int mmax = 20010;
map<char,int>q;
struct Rect
{
    LL x1,x2;
    LL y1,y2;
    char Col[2];
    void read()
    {
        scanf("%s",Col);
        scanf("%I64d %I64d %I64d %I64d",&x1,&y1,&x2,&y2);
        if(x1>x2)
            swap(x1,x2);
        if(y1>y2)
            swap(y1,y2);
    }
}R[110];
struct node
{
    int l,r;
    int cov[3];
    LL len[8];
    int mid()
    {
        return (l+r)>>1;
    }
}T[4*mmax];
struct Num
{
    LL x;
    int id;
    bool operator < (const Num &a) const
    {
        return x<a.x;
    }
}X[mmax];
struct Line
{
    int l,r;
    LL y;
    int fg;
    int Col;
    bool operator < (const Line &a) const
    {
        return y<a.y;
    }
}L[mmax];
LL pos[mmax];
void push_up(int id)
{
    if(T[id].l==T[id].r)
    {
        memset(T[id].len,0,sizeof T[id].len);
        int fg=0;
        for(int i=0;i<3;i++)
        {
            if(T[id].cov[i])
                fg+=(1<<i);
        }
        T[id].len[fg]=pos[T[id].r+1]-pos[T[id].l];
        return ;
    }
    for(int i=0;i<8;i++)
        T[id].len[i]=T[id<<1].len[i]+T[id<<1|1].len[i];
    int fg=0;
    for(int i=0;i<3;i++)
    {
        if(T[id].cov[i])
            fg+=(1<<i);
    }
    LL Len[8];
    for(int i=0;i<8;i++)
        Len[i]=T[id].len[i];
    memset(T[id].len,0,sizeof T[id].len);
    for(int i=0;i<8;i++)
    {
        T[id].len[i|fg]+=Len[i];
    }
}
void build(int id,int l,int r)
{
    T[id].l=l,T[id].r=r;
    memset(T[id].len,0,sizeof T[id].len);
    T[id].cov[0]=T[id].cov[1]=T[id].cov[2]=0;
    if(l==r)
    {
        T[id].len[0]=pos[r+1]-pos[l];
        return ;
    }
    int mid=T[id].mid();
    build(id<<1,l,mid);
    build(id<<1|1,mid+1,r);
    push_up(id);
}
void updata(int id,int l,int r,int fg,int Col)
{
    if(l<=T[id].l && T[id].r<=r)
    {
        T[id].cov[Col]+=fg;
        push_up(id);
        return ;
    }
    int mid=T[id].mid();
    if(mid>=l)
        updata(id<<1,l,r,fg,Col);
    if(mid<r)
        updata(id<<1|1,l,r,fg,Col);
    push_up(id);
}
int id[mmax];
int main()
{
    int n,ca=0,t;
    q.clear();
    q['R']=0;
    q['G']=1;
    q['B']=2;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        int cnt=0;
        for(int i=0;i<n;i++)
        {
            R[i].read();
            X[cnt].x=R[i].x1;
            X[cnt].id=cnt;
            cnt++;
            X[cnt].x=R[i].x2;
            X[cnt].id=cnt;
            cnt++;
        }
        sort(X,X+cnt);
        id[X[0].id]=1;
        pos[1]=X[0].x;
        for(int i=1;i<cnt;i++)
        {
            if(X[i].x==X[i-1].x)
                id[X[i].id]=id[X[i-1].id];
            else
                id[X[i].id]=id[X[i-1].id]+1;
            pos[id[X[i].id]]=X[i].x;
        }
        for(int i=0;i<n;i++)
        {
            L[i].l=id[2*i];
            L[i].r=id[2*i+1];
            L[i].y=R[i].y1;
            L[i].fg=1;
            L[i].Col=q[R[i].Col[0]];
            L[i+n].l=id[2*i];
            L[i+n].r=id[2*i+1];
            L[i+n].y=R[i].y2;
            L[i+n].fg=-1;
            L[i+n].Col=q[R[i].Col[0]];
        }

        sort(L,L+2*n);
        build(1,1,id[X[cnt-1].id]-1);
        updata(1,L[0].l,L[0].r-1,L[0].fg,L[0].Col);
        LL ans[8];
        memset(ans,0,sizeof ans);
        for(int i=1;i<2*n;i++)
        {
            for(int j=0;j<8;j++)
                ans[j]+=(L[i].y-L[i-1].y)*T[1].len[j];
            updata(1,L[i].l,L[i].r-1,L[i].fg,L[i].Col);
        }
        printf("Case %d:\n",++ca);
        printf("%I64d\n%I64d\n%I64d\n%I64d\n%I64d\n%I64d\n%I64d\n",ans[1],ans[2],ans[4],ans[3],ans[5],ans[6],ans[7]);
    }
    return 0;
}

时间: 2024-10-24 11:53:13

hdu 4419 矩形面积并的相关文章

HDU 5251 矩形面积(二维凸包旋转卡壳最小矩形覆盖问题) --2015百度之星题目

B - 矩形面积 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Description 小度熊有一个桌面,小度熊剪了很多矩形放在桌面上,小度熊想知道能把这些矩形包围起来的面积最小的矩形的面积是多少. Input 第一行一个正整数 T,代表测试数据组数(),接下来 T 组测试数据. 每组测试数据占若干行,第一行一个正整数 ,代表矩形的数量.接下来 N 行,每行 8

hdu 5251 矩形面积(百度之星初赛1)(计算几何)

题意:n*4个点,求覆盖所有点的最小矩形面积: 思路:凸包+旋转卡壳,uva10173几乎原题,暂时没写出来,贴一下斌神的码,待补: #include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map

[HDU 4419] Colourful Rectangle (扫描线 矩形面积并)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4419 题目大意:比矩形面积并多了颜色,问染成的每种颜色的面积. 矩形面积并的扫描线维护的是长度,这道题就是维护每个颜色的长度,写起来很蛋疼. 1 #include <cstdio> 2 #include <cmath> 3 #include <algorithm> 4 #include <cstring> 5 #include <vector> 6

HDU 1542 —— Atlantis 【矩形面积并:扫描线】

http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=14795 #include <iostream> #include <cstring> #include <string> #include <algorithm> #define left rt<<1 #define right rt<<1|1 using namespace std; const int MAX

HDU 1264 Counting Squares (线段树-扫描线-矩形面积并)

Problem A : Counting Squares From:HDU, 1264 Problem Description Your input is a series of rectangles, one per line. Each rectangle is specified as two points(X,Y) that specify the opposite corners of a rectangle. All coordinates will be integers in t

HDU 1542 Atlantis (求矩形面积并)

Atlantis Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Description There are several ancient Greek texts that contain descriptions of the fabled island Atlantis. Some of these texts even include maps of parts of

HDU 1255 覆盖的面积 (求矩形面积的交)

覆盖的面积 Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Description 给定平面上若干矩形,求出被这些矩形覆盖过至少两次的区域的面积. Input 输入数据的第一行是一个正整数T(1<=T<=100),代表测试数据的数量.每个测试数据的第一行是一个正整数N(1<=N<=1000),代表矩形的数量,然后是N行数据,每一行包含四个浮点数,代表平面上的一个

hdu 1505 City Game 最大矩形面积 单调队列

City Game Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5106    Accepted Submission(s): 2197 Problem Description Bob is a strategy game programming specialist. In his new city building game t

【HDU 1542】Atlantis(线段树+离散化,矩形面积并)

求矩形面积并,离散化加线段树. 扫描线法: 用平行x轴的直线扫,每次ans+=(下一个高度-当前高度)*当前覆盖的宽度. #include<algorithm> #include<cstdio> #include<cstring> #define dd double #define ll long long #define N 201 using namespace std; struct P{dd s,e,h;int f;}p[N]; struct Tree{dd s