CF42A.Guilty — to the kitchen!

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

It's a very unfortunate day for Volodya today. He got bad mark in algebra and was therefore forced to do some work in the kitchen, namely to cook borscht (traditional Russian soup). This should also improve his algebra skills.

According to the borscht recipe it consists of nn ingredients that have to be mixed in proportion litres (thus, there should be a1x,...,anxa_{1}·x,...,a_{n}·x litres of corresponding ingredients mixed for some non-negative xx ). In the kitchen Volodya found out that he has b1,...,bnb_{1},...,b_{n} litres of these ingredients at his disposal correspondingly. In order to correct his algebra mistakes he ought to cook as much soup as possible in a VV litres volume pan (which means the amount of soup cooked can be between 00 and VV litres). What is the volume of borscht Volodya will cook ultimately?

输入格式

The first line of the input contains two space-separated integers nn and VV ( 1<=n<=20,1<=V<=100001<=n<=20,1<=V<=10000 ). The next line contains nn space-separated integers aia_{i} ( 1<=ai<=1001<=a_{i}<=100 ). Finally, the last line contains nn space-separated integers bib_{i} ( 0<=bi<=1000<=b_{i}<=100 ).

输出格式

Your program should output just one real number — the volume of soup that Volodya will cook. Your answer must have a relative or absolute error less than 10410^{-4} .

输入输出样例

  • 输入#1

    1 100
    1
    40
    

    输出#1

    40.0
    
  • 输入#2

    2 100
    1 1
    25 30
    

    输出#2

    50.0
    
  • 输入#3

    2 100
    1 1
    60 60
    

    输出#3

    100.0
    
首页