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
arjunmayilvaganan: 2015-02-13 12:54:58

"MMDS has done its job..."

Seems like MMDS hasn't done its job. :/

eren_coding: 2015-02-02 00:16:46

doesnt work for python

re(vamsi): there are AC submissions in Python

Last edit: 2015-02-11 13:04:52
gohanssj9: 2015-01-15 20:42:07

AC in one go!

jaswin kaur: 2015-01-11 21:14:27

AC in one go :)

Gerhardt Funk: 2015-01-06 11:14:05

I think something is wrong with how this problem checks python(2.7) solutions. I rewrote the same code in Java and it was accepted. My initial thought was that I had written something wrong but the py code worked on all the test cases (including VARUN KUMARE's) and I used the same methods of input/output as I had in previous problems

Last edit: 2015-01-07 23:16:45
slim shadyy: 2014-12-19 07:19:10

AC in 1 go!..:)

kartikay singh: 2014-12-18 09:44:29

AC in 1 gO:)
do take care about max sum.....happy coding..)

Swapnil Borse: 2014-12-17 11:07:28

Simple sort and multiply approach.. O(nlogn + n)
I wonder why it is there on SPOJ :P

asitm9: 2014-11-20 12:46:21

Don't confuse with the word "maximize".

Pawe³: 2014-11-08 22:18:56

At first I thought there's got to be a hidden logic in x*y - maybe 0 * 5 should be equal to 5, but thankfully not. Adding a sort was enough. Either assume none of the input is correct and validate all or provide a valid input in the first place.
The puzzle is fun when a dev need to think how to solve. Correcting the wording of a specs I have to do at work.
Rubbish!


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