程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj 2528 Mayors posters

poj 2528 Mayors posters

編輯:C++入門知識

題目大意:求最終有多少張海報可見。

題目思路:最近想寫一下矩形切割,當然,對於這道題不是很適合,不過可以過。

[cpp] 
#include<stdio.h> 
#include<stdlib.h> 
#include<string.h> 
#include<string> 
#include<queue> 
#include<algorithm> 
#include<vector> 
#include<stack> 
#include<list> 
#include<iostream> 
#include<map> 
#include<math.h> 
using namespace std; 
#define inf 0x3f3f3f3f 
#define uint unsigned __int64 
#define M 1000000 
struct node 

        int p1,p2,co; 
}a[M],now; 
int used[10100],total; 
int judge(node a,node b) 

        if(a.p2<b.p1||a.p1>b.p2) 
                return 0; 
        else return 1; 

void cut(node tmp) 

        int k1,k2; 
        k1=max(tmp.p1,now.p1); 
        k2=min(tmp.p2,now.p2); 
        if(tmp.p1<k1) 
        { 
                a[++total]=tmp; 
                a[total].p2=k1-1; 
        } 
        if(tmp.p2>k2) 
        { 
                a[++total]=tmp; 
                a[total].p1=k2+1; 
        } 

int main() 

        int t,i,j,l,r,n; 
        scanf("%d",&t); 
        while(t--) 
        { 
                scanf("%d",&n); 
                total=0; 
                for(i=1;i<=n;i++) 
                { 
                        scanf("%d%d",&l,&r); 
                        now.p1=l;now.p2=r;now.co=i; 
                        for(j=total;j>=1;j--) 
                        { 
                                if(judge(now,a[j])) 
                                { 
                                        cut(a[j]); 
                                        a[j]=a[total--]; 
                                } 
                        } 
                        a[++total]=now; 
                } 
                memset(used,0,sizeof(used)); 
                int num=0; 
                for(i=1;i<=total;i++) 
                { 
                        if(!used[a[i].co]) 
                        { 
                                used[a[i].co]=1; 
                                num++; 
                        } 
                } 
                printf("%d\n",num); 
        } 


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved