题库练习 Startup Funding
← 上一题 下一题 →

A10353 | Startup Funding

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

An e-commerce startup pitches to the investors to get funding. They have been functional for $n$ weeks now and also have a website!

For each week they know the number of unique visitors during this week $v_{i}$ and the revenue $c_{i}$ . To evaluate the potential of the startup at some range of weeks from $l$ to $r$ inclusive investors use the minimum among the maximum number of visitors multiplied by $100$ and the minimum revenue during this period, that is:

![](/uploads/acgo/image/4497600cb4a6692a_13df1fdaf7a0.jpeg)The truth is that investors have no idea how to efficiently evaluate the startup, so they are going to pick some $k$ random distinct weeks $l_{i}$ and give them to managers of the startup. For each $l_{i}$ they should pick some $r_{i}>=l_{i}$ and report maximum number of visitors and minimum revenue during this period.

Then, investors will calculate the potential of the startup for each of these ranges and take minimum value of $p(l_{i},r_{i})$ as the total evaluation grade of the startup. Assuming that managers of the startup always report the optimal values of $r_{i}$ for some particular $l_{i}$ , i.e., the value such that the resulting grade of the startup is maximized, what is the expected resulting grade of the startup?

输入格式

The first line of the input contains two integers $n$ and $k$ ( $1<=k<=n<=1000000$ ).

The second line contains $n$ integers $v_{i}$ ( $1<=v_{i}<=10^{7}$ ) — the number of unique visitors during each week.

The third line contains $n$ integers $c_{i}$ ( $1<=c_{i}<=10^{7}$ ) —the revenue for each week.

输出格式

Print a single real value — the expected grade of the startup. Your answer will be considered correct if its absolute or relative error does not exceed $10^{-6}$ .

Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct, if ![](/uploads/acgo/image/cc13d29729e0efae_6a97f0b00a25.jpeg).

输入输出样例

输入 #1
3 2
3 2 1
300 200 300
输出 #1
133.3333333
C++ 编辑器
输入
输出