#Lutece0310. WarCraft III

WarCraft III

Migrated from Lutece 310 WarCraft III

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

Elfness is a crazy player of a famous game, WarCraft III.He not only play solo but also Dota.

Now,an idea comes into his mind,he wants to play dota using the 2424 heroes in Solo instead of 101101 heroes in original Dota. In order to win the game, Elfness wants to choose 55 heroes so that he can get a most powerful battle array.

As we all know, each hero of these 2424 heroes has an elementary ability value,and because of some relationships, there is another ability value between every two heroes. That is, if we choose these two heroes we can get this additional value.

With these complicated rules, Elfness thinks it is hard to choose the best battle array by himself, so he asks you, a good programmer, to help him write a program to choose 55 heroes.

Input

There is only one integer TT(T10T\leq 10) on the first line, which indicates the number of test cases.

At the first line of each test case, there is one integer NN(5n245\leq n\leq 24) indicates the number of heroes you can choose in this case. Then one line followed, this line contains NN strings, separated by one space, where each string's length is less than 2020.The ithi_{th} string is the name of the ithi_{th} hero. Then one line followed, this line contains NN nonnegative integers,each interger is less than 10610^6.The ithi_{th} integer is the elementary ability value of the ithi_{th} hero. Then nn lines followed, each line will have exactly nn nonnegative integers, and these n×nn\times n numbers represent an matrix AA means if we choose ithi_{th} hero and jthj_{th} hero,we can get an additional ability value of 2×Ai,j2\times A_{i,j}. Of course, Ai,i=0A_{i,i}=0 and Ai,j=Aj,iA_{i,j}=A_{j,i}.

Output

For each test case, you should output one line. First, output Case #C: , CC means the number of the test case which is from 11 to TT. Then, output an integer indicates the maximal total value you can get after choosing 55 heroes.

Samples

2
5
Lich Archmage Firelord Farseer Warden
5 4 4 5 6
0 3 3 3 4
3 0 4 4 4
3 4 0 5 2
3 4 5 0 3
4 4 2 3 0
6
DeathKnight DemonHunter Paladin DarkRanger KeeperofGrove BladeMaster
4 5 3 3 3 5
0 3 4 5 3 3
3 0 4 3 5 5
4 4 0 3 4 5
5 3 3 0 3 3
3 5 4 3 0 5
3 5 5 3 5 0
Case #1: 94
Case #2: 102

Note

In the second sample, we can choose these 55 heroes: DeathKnight, DemonHunter, Paladin, KeeperofGrove, BladeMaster. Then,we get elementary values of 55 heroes: 4+5+3+3+5=204+5+3+3+5=20. And, we also get additional values: $2\times (a_{1,2}+a_{1,3}+a_{1,5}+a_{1,6}+a_{2,3}+a_{2,5}+a_{2,6}+a_{3,5}+a_{3,6}+a_{5,6})=2\times (3+4+3+3+4+5+5+4+5+5)=82$. So, total value is 102102 and this value is maximal.

Resources

elfness