CF1530C.Pursuit

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You and your friend Ilya are participating in an individual programming contest consisting of multiple stages. A contestant can get between 00 and 100100 points, inclusive, for each stage, independently of other contestants.

Points received by contestants in different stages are used for forming overall contest results. Suppose that kk stages of the contest are completed. For each contestant, kk4k - \lfloor \frac{k}{4} \rfloor stages with the highest scores are selected, and these scores are added up. This sum is the overall result of the contestant. (Here t\lfloor t \rfloor denotes rounding tt down.)

For example, suppose 99 stages are completed, and your scores are 50,30,50,50,100,10,30,100,5050, 30, 50, 50, 100, 10, 30, 100, 50 . First, 77 stages with the highest scores are chosen — for example, all stages except for the 22 -nd and the 66 -th can be chosen. Then your overall result is equal to 50+50+50+100+30+100+50=43050 + 50 + 50 + 100 + 30 + 100 + 50 = 430 .

As of now, nn stages are completed, and you know the points you and Ilya got for these stages. However, it is unknown how many more stages will be held. You wonder what the smallest number of additional stages is, after which your result might become greater than or equal to Ilya's result, at least in theory. Find this number!

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t10001 \le t \le 1000 ). Description of the test cases follows.

The first line of each test case contains a single integer nn ( 1n1051 \le n \le 10^5 ) — the number of completed stages.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 0ai1000 \le a_i \le 100 ) — your points for the completed stages.

The third line contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( 0bi1000 \le b_i \le 100 ) — Ilya's points for the completed stages.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5 .

输出格式

For each test case print a single integer — the smallest number of additional stages required for your result to be able to become greater than or equal to Ilya's result.

If your result is already not less than Ilya's result, print 00 .

输入输出样例

  • 输入#1

    5
    1
    100
    0
    1
    0
    100
    4
    20 30 40 50
    100 100 100 100
    4
    10 20 30 40
    100 100 100 100
    7
    7 59 62 52 27 31 55
    33 35 50 98 83 80 64

    输出#1

    0
    1
    3
    4
    2

说明/提示

In the first test case, you have scored 100100 points for the first stage, while Ilya has scored 00 . Thus, your overall result ( 100100 ) is already not less than Ilya's result ( 00 ).

In the second test case, you have scored 00 points for the first stage, while Ilya has scored 100100 . A single stage with an opposite result is enough for both your and Ilya's overall scores to become equal to 100100 .

In the third test case, your overall result is 30+40+50=12030 + 40 + 50 = 120 , while Ilya's result is 100+100+100=300100 + 100 + 100 = 300 . After three additional stages your result might become equal to 420420 , while Ilya's result might become equal to 400400 .

In the fourth test case, your overall result after four additional stages might become equal to 470470 , while Ilya's result might become equal to 400400 . Three stages are not enough.

首页