FASHION - Fashion Shows


A fashion show rates participants according to their level of hotness. Two different fashion shows were organized, one for men and the other for women. A date for the third is yet to be decided ;) .

Now the results of both fashion shows are out. The participants of both the fashion shows have decided to date each other, but as usual they have difficuly in choosing their partners. The Maximum Match dating serive (MMDS) comes to their rescue and matches them in such a way that that maximizes the hotness bonds for all couples.

If a man has been rated at hotness level x and a women at hotness level y, the value of their hotness bond is x*y.

Both fashion shows contain N participants each. MMDS has done its job and your job is to find the sum of hotness bonds for all the couples that MMDS has proposed.

Input

The first line of the input contains an integer t, the number of test cases. t test cases follow.

Each test case consists of 3 lines:

  • The first line contains a single integer N (1 <= N <= 1000).
  • The second line contains N integers separated by single spaces denoting the hotness levels of the men.
  • The third line contains N integers separated by single spaces denoting the hotness levels of the women.

All hotness ratings are on a scale of 0 to 10.

Output

For each test case output a single line containing a single integer denoting the sum of the hotness bonds for all pairs that MMDS has proposed.

Example

Input:
2
2
1 1
3 2
3
2 3 2
1 3 2

Output:
5
15

hide comments
hetp111: 2019-04-12 15:47:48

too easy...

medha_08: 2019-04-06 15:01:17

AC in one go!

md_meraj1319: 2019-03-29 20:08:33

so easy...

chaubey99: 2019-03-16 18:12:48

The question is not stated correctly, we need to maximize the sum of hotness and not each hotness bond separately.

Last edit: 2019-03-16 18:13:44
randomabraham: 2019-03-13 16:12:03

"that MMDS has proposed" - this is wrong, we have to pair them first

souravramos04: 2019-02-17 08:13:39

I got AC after I used bubble sort algorithm.But it made my code look too big. Is it right approach? or there's any other way to solve this problem? It also took 0.06 time and 9.2M memory in C which is quite a lot compared to other languages.

phoemur: 2018-09-04 19:16:46

In C++ just apply std::sort and std::inner_product

anshuman1117: 2018-08-15 09:10:08

Very easy problem. Just sort the two arrays, calculate hotness and then use an accumulator variable to calculate the sum. print it and get AC in 1 GO. lol

sudhanshu_sing: 2018-08-13 13:12:19

wrong explanation, u have to match the hotness of men and women first to maximize total hotness !!

byte_b: 2018-07-24 07:18:49

Use two stacks and store numbers in ascending order ( smaller first ). The. Just pop elements and multiply them.


Added by:Matthew Reeder
Date:2006-10-29
Time limit:1s
Source limit:30000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Al-Khawarizm 2006