#Lutece0069. Homework

Homework

Migrated from Lutece 69 Homework

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Doing homework often makes students understand knowledge deeply. As a student of UESTC, WCM usually has much homework to do. Every day he gets a set of problems from teachers. Problem ii will take tit_i time to complete. Given a schedule (i.e., an ordering of the problems), let CiC_i denote the finishing time of problem ii. For example, if problem jj is the first to be done, we would have Cj=tjC_j = t_j . Each problem ii also has a given weight wiw_i that represents its importance to the student's mastering of the correlative knowledge. He wants to order the problems to minimize the weighted sum of the completion times, namely w1w_1*C1C_1 + w2w_2*C2C_2 + w3w_3*C3C_3++ wnw_n*CnC_n.

You should design an efficient algorithm to solve this problem. That is, you are given a set of n problems with a processing time ti and a weighted wiw_i for each problem. You want to order the problems so as to minimize the weighted sum of the completion times, ΣΣ(i=1..ni=1..n)wiw_i*CiCi.

Example: Suppose there are two problems: the first takes time t1=2t_1=2 and has weight w1w_1=1212, while the second problem takes time t2=3t_2=3 and has weight w2=4w_2=4. Then doing problem 11 first would yield a weighted completion time of 1212*22+44*5=445=44, while doing the second problem first would yield a larger weighted completion time of 44*33+1212*5=725=72.Apparently, 4444 is the minimum of the weighted sum of completion times, ΣΣ(i=1..ni=1..n)wiw_i*CiC_i.

Input

The input contains an integer TT on the first line, which indicates the number of test cases. Each test case consists of three lines. The first line contains one integer nn,(0<n10000 < n \leq 1000),which means the number of the problems. The second line contains nn numbers, t1t_1,t2t_2,…,tnt_n,(0<ti200 < t_i \leq 20), tit_i means the time problem ii would take. The third line contains nn numbers, w1w_1,w2w_2,…wnw_n,(0<wi200 < w_i \leq 20), wiw_i means the weight of problem ii.

Output

For each test case output one line containing a single integer, which represents the minimum of the weighted sum of the completion times, ΣΣ(i=1..ni=1..n)wiw_i*CiC_i.

Samples

1
2
2 3
12 4
44

Resources

The 5th UESTC Programming Contest Preliminary