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

poj 1151 Atlantis

編輯: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 10000 
struct node 

        double p1[2],p2[2]; 
}a[M],now; 
int total; 
int  judge(node a,node b) 

        for(int i=0;i<2;i++) 
        { 
                if(a.p2[i]<=b.p1[i]||a.p1[i]>=b.p2[i]) 
                        return 0; 
        } 
        return 1; 

void cut(node tmp) 

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

int main() 

        int n,i,j,count=1; 
        while(scanf("%d",&n),n) 
        { 
                total=0; 
                for(i=1;i<=n;i++) 
                { 
                        scanf("%lf%lf%lf%lf",&now.p1[0],&now.p1[1],&now.p2[0],&now.p2[1]); 
                        for(j=total;j>=1;j--) 
                        { 
                                if(judge(now,a[j])) 
                                { 
                                        cut(a[j]); 
                                        a[j]=a[total--]; 
                                } 
                        } 
                        a[++total]=now; 
                } 
                double sum=0.0; 
                for(i=1;i<=total;i++) 
                        sum+=(a[i].p2[0]-a[i].p1[0])*(a[i].p2[1]-a[i].p1[1]); 
               printf("Test case #%d\n",count++); 
                printf("Total explored area: %.2lf\n",sum); 
                puts(""); 
        } 

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