CF107E.Darts

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first line of input contains integer nn ( 1<=n<=5001<=n<=500 ) — the number of photos on the wall. Then follow nn lines describing the photos, each containing 88 single-space-separated integers (coordinates of 44 vertices): x1x_{1} , y1y_{1} , x2x_{2} , y2y_{2} , x3x_{3} , y3y_{3} , x4x_{4} , y4y_{4} . Each photo is a rectangle with a nonzero area. The coordinates are integers, not exceeding 10410^{4} 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 10610^{-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
    
首页