博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDUOJ 2056 Rectangles (几何计算问题)
阅读量:6278 次
发布时间:2019-06-22

本文共 1564 字,大约阅读时间需要 5 分钟。

Rectangles

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 7889    Accepted Submission(s): 2538


Problem Description
Given two rectangles and the coordinates of two points on the diagonals of each rectangle,you have to calculate the area of the intersected part of two rectangles. its sides are parallel to OX and OY .
 

Input
Input The first line of input is 8 positive numbers which indicate the coordinates of four points that must be on each diagonal.The 8 numbers are x1,y1,x2,y2,x3,y3,x4,y4.That means the two points on the first rectangle are(x1,y1),(x2,y2);the other two points on the second rectangle are (x3,y3),(x4,y4).
 

Output
Output For each case output the area of their intersected part in a single line.accurate up to 2 decimal places.
 

Sample Input
 
1.00 1.00 3.00 3.00 2.00 2.00 4.00 4.00 5.00 5.00 13.00 13.00 4.00 4.00 12.50 12.50
 

Sample Output
 
1.00 56.25
 
#include 
#include
using namespace std;int main(){ double x[4],y[4],area; int i,j; while(cin>>x[0]>>y[0]>>x[1]>>y[1]>>x[2]>>y[2]>>x[3]>>y[3]) { //判断两个矩形是否没有公共部分 for(i=0;i<4;i+=2) { if(x[i]>x[i+1]) swap(x[i],x[i+1]); if(y[i]>y[i+1]) swap(y[i],y[i+1]); } if(x[2]>=x[1]||x[0]>=x[3]||y[2]>=y[1]||y[0]>=y[3]) area=0; //有公共部分时计算面积 else { /*排序,排序后x[2]-x[1]即是公共部分的长, y[2]-y[1]即是公共部分的高,注意公共部分是矩形*/ for(i=0;i<4;i++) { for(j=0;j<3-i;j++) { if(x[j]>x[j+1]) swap(x[j],x[j+1]); if(y[j]>y[j+1]) swap(y[j],y[j+1]); } } area=(x[2]-x[1])*(y[2]-y[1]); } printf("%.2lf\n",area); } return 0;}

转载地址:http://fryva.baihongyu.com/

你可能感兴趣的文章
多线程基础知识
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>
flutter error
查看>>
Flask框架从入门到精通之模型数据库配置(十一)
查看>>
10年重新出发
查看>>
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>
让人抓头的Java并发(一) 轻松认识多线程
查看>>
从源码剖析useState的执行过程
查看>>
地包天如何矫正?
查看>>
中间件
查看>>
Android SharedPreferences
查看>>
css面试题
查看>>
Vue组建通信
查看>>