CF BUDDY
← Problems·

954E · Water Taps

2000 · binary search, greedy, sortings

Problem: Consider a system of n water taps all pouring water into the same container. The i-th water tap can be set to deliver any amount of water from 0 to ai ml per second (this amount may be a real number). The water delivered by i-th tap has temperature ti.

If for every i[1,n]i \in [1,n] you set i-th tap to deliver exactly xi ml of water per second, then the resulting temperature of water will be i=1nxitii=1nxi\frac{\sum_{i=1}^{n} x_{i} t_{i}}{\sum_{i=1}^{n} x_{i}} (if i=1nxi=0\sum_{i=1}^{n} x_i = 0, then to avoid division by zero we state that the resulting water temperature is 0).

You have to set all the water taps in such a way that the resulting temperature is exactly T. What is the maximum amount of water you may get per second if its temperature has to be T?

Input Format: The first line contains two integers n and T (1 ≤ n ≤ 200000, 1 ≤ T ≤ 106) — the number of water taps and the desired temperature of water, respectively.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 106) where ai is the maximum amount of water i-th tap can deliver per second.

The third line contains n integers t1, t2, ..., tn (1 ≤ ti ≤ 106) — the temperature of water each tap delivers.

Output Format: Print the maximum possible amount of water with temperature exactly T you can get per second (if it is impossible to obtain water with such temperature, then the answer is considered to be 0).

Your answer is considered correct if its absolute or relative error doesn't exceed 10 - 6.

Sample Cases

Case 1

Input

2 100
3 10
50 150

Output

6.000000000000000

Case 2

Input

3 9
5 5 30
6 6 10

Output

40.000000000000000

Case 3

Input

2 12
1 3
10 15

Output

1.666666666666667

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback