CF107E.Darts
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line of input contains integer n ( 1<=n<=500 ) — the number of photos on the wall. Then follow n lines describing the photos, each containing 8 single-space-separated integers (coordinates of 4 vertices): x1 , y1 , x2 , y2 , x3 , y3 , x4 , y4 . Each photo is a rectangle with a nonzero area. The coordinates are integers, not exceeding 104 by absolute value. The coordinates of the rectangle are given in either clockwise or counterclockwise order.
输入格式
Print the expected score of the throw. The answer will be accepted if it has absolute or relative error not exceeding 10−6 .
输出格式
无
输入输出样例
输入#1
1 0 0 0 2 2 2 2 0
输出#1
1.0000000000
输入#2
1 -1 0 0 1 1 0 0 -1
输出#2
1.0000000000
输入#3
4 0 0 0 1 3 1 3 0 0 0 0 3 1 3 1 0 3 3 2 3 2 0 3 0 3 3 3 2 0 2 0 3
输出#3
1.5000000000
输入#4
2 -1 0 0 1 1 0 0 -1 0 0 1 1 2 0 1 -1
输出#4
1.1428571429