CF954E.Water Taps

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Consider a system of nn water taps all pouring water into the same container. The ii -th water tap can be set to deliver any amount of water from 00 to aia_{i} ml per second (this amount may be a real number). The water delivered by ii -th tap has temperature tit_{i} .

If for every you set ii -th tap to deliver exactly xix_{i} ml of water per second, then the resulting temperature of water will be (if , then to avoid division by zero we state that the resulting water temperature is 00 ).

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

输入格式

The first line contains two integers nn and TT ( 1<=n<=2000001<=n<=200000 , 1<=T<=1061<=T<=10^{6} ) — the number of water taps and the desired temperature of water, respectively.

The second line contains nn integers a1a_{1} , a2a_{2} , ..., ana_{n} ( 1<=ai<=1061<=a_{i}<=10^{6} ) where aia_{i} is the maximum amount of water ii -th tap can deliver per second.

The third line contains nn integers t1t_{1} , t2t_{2} , ..., tnt_{n} ( 1<=ti<=1061<=t_{i}<=10^{6} ) — the temperature of water each tap delivers.

输出格式

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

Your answer is considered correct if its absolute or relative error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    2 100
    3 10
    50 150
    

    输出#1

    6.000000000000000
    
  • 输入#2

    3 9
    5 5 30
    6 6 10
    

    输出#2

    40.000000000000000
    
  • 输入#3

    2 12
    1 3
    10 15
    

    输出#3

    1.666666666666667
    
首页