#Lutece0361. Boring Ranking

Boring Ranking

Migrated from Lutece 361 Boring Ranking

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

New term is coming, so the annual scholarship is going to be distributed. But Alibaba can’t wait to know how much he can get. Now he gets all the info including every course’s score and quality score of every student. He is too impatient to ask you for help.

As a UESTCer, you must know the evaluation method of scholarship. If you aren’t familiar with it, you can refer to the following description.

Your score consists of two parts: basis score and quality score.

Basis score is the weighted average score of all courses’ scores. Every course has a weight coefficient. Assume SiS_i and WiW_i are the score and weight coefficient of the ithi_{th} course, then the weighted average score is equal to:

Si×WiWi\frac{\sum{S_i\times W_i}}{\sum{W_i}}

Quality score is up to your performance in science and technology activities, competitions and student works.

At first, all students are ranked by basis score, and divided into 44 groups: top 10%10\%, next 20%20\%, then next 30%30\% and others. And then every student is ranked only in his/her group according to the sum of basic score and quality score.

Alibaba wants to know the final ranklist of top 33 groups because the last 40%40\% can’t get the scholarship. Can you tell him?

Input

The first line of input contains an integer TT (T20T\leq 20), which is the number of test cases that follow.

For each test case:

There are two integers NN and MM (10N10010\leq N\leq 100, 1M201\leq M\leq 20) in the first line, which is the number of students and courses.

Then NN lines follow, each of them containing a string. The string in ithi_{th} line is the name of the ithi_{th} student. All strings only consist of lowercase letters and the length isn’t larger than 2020.

Then a single line follows containing MM integers. The ithi_{th} integer is WiW_i indicating the weight coefficient of the ithi_{th} course. All weight coefficients are in the range [1,6][1,6].

Then NN lines follow, each of them containing MM integers separated by single spaces. The jthj_{th} element in the ithi_{th} line is the jthj_{th} course’s score of the ithi_{th} student. All scores are in the range [0,100][0,100].

Then NN lines follow, each of them containing a single integer indicating the quality score. All scores are in the range [0,20][0,20].

You can assume every student’s name, basis score and final score are unique, and NN is a multiple of 1010.

Output

For every test case, you should output Case #k: first in a single line, where kk indicates the case number and starts at 11. Then output the final ranklist of top 33 groups who get the scholarship. Print a blank line between every two adjacent groups, and print a blank line after every test case.

Samples

1
10 1
standy
totalfrank
total
frank
frost
joyzhang
uestc
uestcmelody
acm
icpc
5
90
92
65
30
50
60
85
95
80
88
10
3
12
8
6
3
5
1
20
5
Case #1:
uestcmelody

standy
totalfrank

acm
icpc
uestc

Resources

The 9th UESTC Programming Contest Preliminary