FASHION - Fashion Shows

题意翻译

给定两个长度为 $n$ 的数组 $a,b$,将 $a,b$ 中的元素分别重新排列使得 $ans=\sum\limits_{i=1}^n a_i\times b_i$ 的值最大,求 $ans$ 最大值。

题目描述

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.

输入输出格式

输入格式


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.

输出格式


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.

输入输出样例

输入样例 #1

2
2
1 1
3 2
3
2 3 2
1 3 2

输出样例 #1

5
15