#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 will take time to complete. Given a schedule (i.e., an ordering of the problems), let denote the finishing time of problem . For example, if problem is the first to be done, we would have . Each problem also has a given weight 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 *
+
*
+
*
+
…+
*
.
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 for each problem. You want to order the problems so as to minimize the weighted sum of the completion times, ()*
.
Example: Suppose there are two problems: the first takes time and has weight =, while the second problem takes time and has weight . Then doing problem first would yield a weighted completion time of *
+
*
, while doing the second problem first would yield a larger weighted completion time of *
+
*
.Apparently, is the minimum of the weighted sum of completion times, ()*
.
Input
The input contains an integer on the first line, which indicates the number of test cases. Each test case consists of three lines. The first line contains one integer ,(),which means the number of the problems. The second line contains numbers, ,,…,,(), means the time problem would take. The third line contains numbers, ,,…,(), means the weight of problem .
Output
For each test case output one line containing a single integer, which represents the minimum of the weighted sum of the completion times, ()*
.
Samples
1
2
2 3
12 4
44
Resources
The 5th UESTC Programming Contest Preliminary