CF513C.Second price auction

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nowadays, most of the internet advertisements are not statically linked to a web page. Instead, what will be shown to the person opening a web page is determined within 100 milliseconds after the web page is opened. Usually, multiple companies compete for each ad slot on the web page in an auction. Each of them receives a request with details about the user, web page and ad slot and they have to respond within those 100 milliseconds with a bid they would pay for putting an advertisement on that ad slot. The company that suggests the highest bid wins the auction and gets to place its advertisement. If there are several companies tied for the highest bid, the winner gets picked at random.

However, the company that won the auction does not have to pay the exact amount of its bid. In most of the cases, a second-price auction is used. This means that the amount paid by the company is equal to the maximum of all the other bids placed for this ad slot.

Let's consider one such bidding. There are nn companies competing for placing an ad. The ii -th of these companies will bid an integer number of microdollars equiprobably randomly chosen from the range between LiL_{i} and RiR_{i} , inclusive. In the other words, the value of the ii -th company bid can be any integer from the range [Li,Ri][L_{i},R_{i}] with the same probability.

Determine the expected value that the winner will have to pay in a second-price auction.

输入格式

The first line of input contains an integer number nn ( 2<=n<=52<=n<=5 ). nn lines follow, the ii -th of them containing two numbers LiL_{i} and RiR_{i} ( 1<=Li<=Ri<=100001<=L_{i}<=R_{i}<=10000 ) describing the ii -th company's bid preferences.

This problem doesn't have subproblems. You will get 8 points for the correct submission.

输出格式

Output the answer with absolute or relative error no more than 1e91e-9 .

输入输出样例

  • 输入#1

    3
    4 7
    8 10
    5 5
    

    输出#1

    5.7500000000
    
  • 输入#2

    3
    2 5
    3 4
    1 6
    

    输出#2

    3.5000000000
    

说明/提示

Consider the first example. The first company bids a random integer number of microdollars in range [4,7][4,7] ; the second company bids between 88 and 1010 , and the third company bids 55 microdollars. The second company will win regardless of the exact value it bids, however the price it will pay depends on the value of first company's bid. With probability 0.50.5 the first company will bid at most 55 microdollars, and the second-highest price of the whole auction will be 55 . With probability 0.250.25 it will bid 66 microdollars, and with probability 0.250.25 it will bid 77 microdollars. Thus, the expected value the second company will have to pay is 0.55+0.256+0.257=5.750.5·5+0.25·6+0.25·7=5.75 .

首页