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 n companies competing for placing an ad. The i -th of these companies will bid an integer number of microdollars equiprobably randomly chosen from the range between Li and Ri , inclusive. In the other words, the value of the i -th company bid can be any integer from the range [Li,Ri] 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 n ( 2<=n<=5 ). n lines follow, the i -th of them containing two numbers Li and Ri ( 1<=Li<=Ri<=10000 ) describing the i -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 1e−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] ; the second company bids between 8 and 10 , and the third company bids 5 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.5 the first company will bid at most 5 microdollars, and the second-highest price of the whole auction will be 5 . With probability 0.25 it will bid 6 microdollars, and with probability 0.25 it will bid 7 microdollars. Thus, the expected value the second company will have to pay is 0.5⋅5+0.25⋅6+0.25⋅7=5.75 .