CF280A.Rectangle Puzzle

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 OxOx axis, equals ww , the length of the side that is parallel to the OyOy axis, equals hh . 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.

输入格式

The first line contains three integers w,h,αw,h,α (1<=w,h<=106; 0<=α<=180)(1<=w,h<=10^{6}; 0<=α<=180) . Angle αα is given in degrees.

输出格式

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 10610^{-6} .

输入输出样例

  • 输入#1

    1 1 45
    

    输出#1

    0.828427125
    
  • 输入#2

    6 4 30
    

    输出#2

    19.668384925
    

说明/提示

The second sample has been drawn on the picture above.

首页