CF846F.Random Query

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array aa consisting of nn positive integers. You pick two integer numbers ll and rr from 11 to nn , inclusive (numbers are picked randomly, equiprobably and independently). If l>r , then you swap values of ll and rr . You have to calculate the expected value of the number of unique elements in segment of the array from index ll to index rr , inclusive ( 11 -indexed).

输入格式

The first line contains one integer number nn (1<=n<=106)(1<=n<=10^{6}) . The second line contains nn integer numbers a1a_{1} , a2a_{2} , ... ana_{n} (1<=ai<=106)(1<=a_{i}<=10^{6}) — elements of the array.

输出格式

Print one number — the expected number of unique elements in chosen segment.

Your answer will be considered correct if its absolute or relative error doesn't exceed 10410^{-4} — formally, the answer is correct if , where xx is jury's answer, and yy is your answer.

输入输出样例

  • 输入#1

    2
    1 2
    

    输出#1

    1.500000
    
  • 输入#2

    2
    2 2
    

    输出#2

    1.000000
    
首页