hdu 2461 容斥原理 Rectangle

來源:互聯網
上載者:User

題意:http://acm.hdu.edu.cn/showproblem.php?pid=2461

        給你n(n很小)個長方形,求這中間任意長方形的面積並。

題解:

        容斥原理。

#include <cstdio>#include <iostream>#include <cstring>using namespace std;int n,Q;struct Rec{    int x1,x2,y1,y2;}rec[30];int s[(1 << 20) + 3], a[22],cnt,add,id;Rec intersec(Rec a, Rec b){    Rec ret;    if(a.x2 <= b.x1 || b.x2 <= b.x1 || a.y2 <= b.y1 || b.y2 <= a.y1){        ret.x1 = ret.y1 = ret.x2 = ret.y2 = 0;        return ret;    }    ret.x1 = max(a.x1, b.x1);    ret.y1 = max(a.y1, b.y1);    ret.x2 = min(a.x2, b.x2);    ret.y2 = min(a.y2, b.y2);    return ret;}int Area(Rec r){    if(r.x1 >= r.x2 || r.y1 >= r.y2)        return 0;    return (r.y2 - r.y1) * (r.x2 - r.x1);}int In_exclusion(int k, Rec r){    if(Area(r) == 0) return 0;//    int ret = 0;    for(int i = k; i <= cnt; i ++){        Rec tmp = intersec(rec[a[i]],r);        ret += Area(tmp) - In_exclusion(i + 1,tmp);    }    return ret;}int main(){    int k,ca = 1;    while(~scanf("%d%d",&n,&Q) && (n || Q)){        printf("Case %d:\n",ca ++);        Rec total ;        total.x1 = total.y1 = 0;        total.x2 = total.y2 = 1000;        memset(s,0,sizeof(s));        for(int i = 1; i <= n; ++i){            scanf("%d%d%d%d",&rec[i].x1,&rec[i].y1,&rec[i].x2,&rec[i].y2);        }        for(int qu = 1; qu <= Q; qu ++){            scanf("%d",&k);            cnt = 0, add = 0;            memset(a,0,sizeof(a));            while(k --){                scanf("%d",&id);                add = (add | (1 << (id - 1)));                a[cnt ++] = id;            }            if(s[add] == 0)                s[add] = In_exclusion(0,total);            printf("Query %d: %d\n",qu, s[add]);        }        printf("\n");    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.