#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 heroes in Solo instead of heroes in original Dota. In order to win the game, Elfness wants to choose heroes so that he can get a most powerful battle array.
As we all know, each hero of these 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 heroes.
Input
There is only one integer () on the first line, which indicates the number of test cases.
At the first line of each test case, there is one integer () indicates the number of heroes you can choose in this case. Then one line followed, this line contains strings, separated by one space, where each string's length is less than .The string is the name of the hero. Then one line followed, this line contains nonnegative integers,each interger is less than .The integer is the elementary ability value of the hero. Then lines followed, each line will have exactly nonnegative integers, and these numbers represent an matrix means if we choose hero and hero,we can get an additional ability value of . Of course, and .
Output
For each test case, you should output one line. First, output Case #C:
, means the number of the test case which is from to . Then, output an integer indicates the maximal total value you can get after choosing 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 heroes: DeathKnight, DemonHunter, Paladin, KeeperofGrove, BladeMaster. Then,we get elementary values of heroes: . 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 and this value is maximal.
Resources
elfness