C. Rectangle Puzzle

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/281/problem/C

Description

You are given two rectangles on a plane. The centers of both rectangles are located in the origin of coordinates (meaning the center of the rectangle's symmetry). The first rectangle's sides are parallel to the coordinate axes: the length of the side that is parallel to the Oxaxis, equals w, the length of the side that is parallel to the Oy axis, equals h. The second rectangle can be obtained by rotating the first rectangle relative to the origin of coordinates by angle α.

Your task is to find the area of the region which belongs to both given rectangles. This region is shaded in the picture.

Input

The first line contains three integers w, h, α (1 ≤ w, h ≤ 106; 0 ≤ α ≤ 180). Angle α is given in degrees.

Output

In a single line print a real number — the area of the region which belongs to both given rectangles.

The answer will be considered correct if its relative or absolute error doesn't exceed 10 - 6.

Sample Input

1 1 45

Sample Output

0.828427125

HINT

题意

给你一个中心在原点的矩形,这个矩形的边平行于坐标轴,然后将这个矩形旋转k°,然后问你旋转之后的矩形和原来的矩形相交的面积是多少

题解:

解方程,有两种情况一种是上图给你的,一种是大正方形减去两个矩形的那种

分别把公式列出来,然后解就好了。。

高中几何题,蛋疼。。

代码

#include<iostream>
#include<math.h>
#include<stdio.h>
using namespace std;
const double pi = acos(-1.0);
int main()
{
double w,h,t;cin>>w>>h>>t;
if(w<h)swap(w,h);
if(t>=)t=-t;
t=t*pi/;
double x1,y1,x2,y2;
y2 = (h-tan(t)*w/(+1.0/cos(t)))/(+/cos(t)-tan(t)*tan(t)/(+/cos(t)));
x2 = tan(t)*y2;
y1 = (w-y2*tan(t))/(+/cos(t));
x1 = y1*tan(t); //cout<<x1<<" "<<y1<<" "<<x2<<" "<<y2<<endl;
//cout<<tan(t)<<endl;
if(tan(t/)<h/w)
{
double ans = w*h - x1*y1 - x2*y2;
printf("%.16f\n",ans);
}
else
{
double x = h / sin(t);
printf("%.10f\n",w*h-(w-x)*h);
} }

最新文章

  1. NOIP 2013 货车运输【Kruskal + 树链剖分 + 线段树 】【倍增】
  2. Nobel Lecture, December 12, 1929 Thermionic phenomena and the laws which govern them
  3. Oracle 学习笔记(一)
  4. C语言中的volatile
  5. POJ 1417 True Liars
  6. 2014阿里巴巴web前实习生项目分析(1)
  7. eclipse-java开发实用快捷键
  8. VxWorks6.6 pcPentium BSP 使用说明(三):设备驱动
  9. 搭建spring cloud config
  10. 自己动手写Redis客户端(C#实现)2 - SET请求和状态回复(set)
  11. LVS原理详解(3种工作方式8种调度算法)--老男孩
  12. idea 配置git
  13. Django web框架-----Django templates模板
  14. POJ - 2528 Mayor&#39;s posters (离散化+线段树区间修改)
  15. Tp5自动验证
  16. Learning-Python【1】:交互式环境与变量的使用
  17. 带分页功能的SSH整合,DAO层经典封装
  18. django 表单常用field
  19. CH5701 开车旅行
  20. ios alloc init 和 new 的区别

热门文章

  1. 【转】TLB(Translation Lookaside Buffers,TLB)的作用
  2. 最简单的基于FFMPEG的转码程序
  3. 关于web中的自适应布局
  4. Android-监听sdcard状态
  5. Python抓取单个网页中所有的PDF文档
  6. DevExpress控件XtraGrid的Master-Detail用法 z
  7. 动画 -- ListView列表item逐个出来(从无到有)
  8. opencv行人检测里遇到的setSVMDetector()问题
  9. leetcode&mdash;sqrt
  10. UIImage 相关操作