CF1443C.The Delivery Dilemma

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya is preparing for his birthday. He decided that there would be nn different dishes on the dinner table, numbered from 11 to nn . Since Petya doesn't like to cook, he wants to order these dishes in restaurants.

Unfortunately, all dishes are prepared in different restaurants and therefore Petya needs to pick up his orders from nn different places. To speed up this process, he wants to order courier delivery at some restaurants. Thus, for each dish, there are two options for Petya how he can get it:

  • the dish will be delivered by a courier from the restaurant ii , in this case the courier will arrive in aia_i minutes,
  • Petya goes to the restaurant ii on his own and picks up the dish, he will spend bib_i minutes on this.

Each restaurant has its own couriers and they start delivering the order at the moment Petya leaves the house. In other words, all couriers work in parallel. Petya must visit all restaurants in which he has not chosen delivery, he does this consistently.

For example, if Petya wants to order n=4n = 4 dishes and a=[3,7,4,5]a = [3, 7, 4, 5] , and b=[2,1,2,4]b = [2, 1, 2, 4] , then he can order delivery from the first and the fourth restaurant, and go to the second and third on your own. Then the courier of the first restaurant will bring the order in 33 minutes, the courier of the fourth restaurant will bring the order in 55 minutes, and Petya will pick up the remaining dishes in 1+2=31 + 2 = 3 minutes. Thus, in 55 minutes all the dishes will be at Petya's house.

Find the minimum time after which all the dishes can be at Petya's home.

输入格式

The first line contains one positive integer tt ( 1t21051 \le t \le 2 \cdot 10^5 ) — the number of test cases. Then tt test cases follow.

Each test case begins with a line containing one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of dishes that Petya wants to order.

The second line of each test case contains nn integers a1ana_1 \ldots a_n ( 1ai1091 \le a_i \le 10^9 ) — the time of courier delivery of the dish with the number ii .

The third line of each test case contains nn integers b1bnb_1 \ldots b_n ( 1bi1091 \le b_i \le 10^9 ) — the time during which Petya will pick up the dish with the number ii .

The sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case output one integer — the minimum time after which all dishes can be at Petya's home.

输入输出样例

  • 输入#1

    4
    4
    3 7 4 5
    2 1 2 4
    4
    1 2 3 4
    3 3 3 3
    2
    1 2
    10 10
    2
    10 10
    1 2

    输出#1

    5
    3
    2
    3
首页