Submit | All submissions | Best solutions | Back to list |
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
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 |
hide comments
|
||||||||||||||
2015-03-07 23:40:27 sarkarshuvojit
MMDS's irresponsible actions costed me a WA -_- You had one job, MMDS. Just. One. Job. |
||||||||||||||
2015-02-13 12:54:58 arjunmayilvaganan
"MMDS has done its job..." Seems like MMDS hasn't done its job. :/ |
||||||||||||||
2015-02-02 00:16:46 eren_coding
doesnt work for python re(vamsi): there are AC submissions in Python Last edit: 2015-02-11 13:04:52 |
||||||||||||||
2015-01-15 20:42:07 gohanssj9
AC in one go! |
||||||||||||||
2015-01-11 21:14:27 jaswin kaur
AC in one go :) |
||||||||||||||
2015-01-06 11:14:05 Gerhardt Funk
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 |
||||||||||||||
2014-12-19 07:19:10 slim shadyy
AC in 1 go!..:) |
||||||||||||||
2014-12-18 09:44:29 kartikay singh
AC in 1 gO:) do take care about max sum.....happy coding..) |
||||||||||||||
2014-12-17 11:07:28 Swapnil Borse
Simple sort and multiply approach.. O(nlogn + n) I wonder why it is there on SPOJ :P |
||||||||||||||
2014-11-20 12:46:21 asitm9
Don't confuse with the word "maximize". |