CF1735F.Pebbles and Beads
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are two currencies: pebbles and beads. Initially you have a pebbles, b beads.
There are n days, each day you can exchange one currency for another at some exchange rate.
On day i , you can exchange −pi≤x≤pi pebbles for −qi≤y≤qi beads or vice versa. It's allowed not to perform an exchange at all. Meanwhile, if you perform an exchange, the proportion x⋅qi=−y⋅pi must be fulfilled. Fractional exchanges are allowed.
You can perform no more than one such exchange in one day. The numbers of pebbles and beads you have must always remain non-negative.
Please solve the following n problems independently: for each day i , output the maximum number of pebbles that you can have at the end of day i if you perform exchanges optimally.
输入格式
The first line of the input contains a single integer t ( 1≤t≤103 ) — the number of test cases. The description of test cases follows.
The first line of each test case contains three integers n , a and b ( 1≤n≤300000 , 0≤a,b≤109 ) — the number of days and the initial number of pebbles and beads respectively.
The second line of each test case contains n integers: p1,p2,…,pn ( 1≤pi≤109 ).
The third line of each test case contains n integers: q1,q2,…,qn ( 1≤qi≤109 ).
It is guaranteed that the sum of n over all test cases doesn't exceed 300000 .
输出格式
Output n numbers — the maximum number of pebbles at the end of each day.
Your answer is considered correct if its absolute or relative error does not exceed 10−6 .
Formally, let your answer be a , and the jury's answer be b . Your answer is accepted if and only if max(1,∣b∣)∣a−b∣≤10−6 .
输入输出样例
输入#1
3 2 6 0 2 3 4 2 3 0 6 4 2 10 2 3 10 1 10 10 33 1000
输出#1
6 8 4 6 9.000000 10.33
说明/提示
In the image below you can see the solutions for the first two test cases. In each line there is an optimal sequence of actions for each day.
In the first test case, the optimal strategy for the first day is to do no action at all, as we can only decrease the number of pebbles. The optimal strategy for the second day is at first to exchange 1 pebble for 2 beads, which is a correct exchange, since 1⋅4=2⋅2 , and then to exchange 2 beads for 3 pebbles.