CF293D.Ksusha and Square

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Ksusha is a vigorous mathematician. She is keen on absolutely incredible mathematical riddles.

Today Ksusha came across a convex polygon of non-zero area. She is now wondering: if she chooses a pair of distinct points uniformly among all integer points (points with integer coordinates) inside or on the border of the polygon and then draws a square with two opposite vertices lying in the chosen points, what will the expectation of this square's area be?

A pair of distinct points is chosen uniformly among all pairs of distinct points, located inside or on the border of the polygon. Pairs of points p,qp,q (pq)(p≠q) and q,pq,p are considered the same.

Help Ksusha! Count the required expectation.

输入格式

The first line contains integer nn (3<=n<=105)(3<=n<=10^{5}) — the number of vertices of Ksusha's convex polygon. Next nn lines contain the coordinates of the polygon vertices in clockwise or counterclockwise order. The ii -th line contains integers xi,yix_{i},y_{i} (xi,yi<=106)(|x_{i}|,|y_{i}|<=10^{6}) — the coordinates of the vertex that goes ii -th in that order.

输出格式

Print a single real number — the required expected area.

The answer will be considered correct if its absolute and relative error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    3
    0 0
    5 5
    5 0
    

    输出#1

    4.6666666667
    
  • 输入#2

    4
    -1 3
    4 5
    6 2
    3 -5
    

    输出#2

    8.1583333333
    
  • 输入#3

    3
    17 136
    859 937
    16 641
    

    输出#3

    66811.3704155169
    
首页