#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 and are the score and weight coefficient of the course, then the weighted average score is equal to:
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 groups: top , next , then next 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 groups because the last can’t get the scholarship. Can you tell him?
Input
The first line of input contains an integer (), which is the number of test cases that follow.
For each test case:
There are two integers and (, ) in the first line, which is the number of students and courses.
Then lines follow, each of them containing a string. The string in line is the name of the student. All strings only consist of lowercase letters and the length isn’t larger than .
Then a single line follows containing integers. The integer is indicating the weight coefficient of the course. All weight coefficients are in the range .
Then lines follow, each of them containing integers separated by single spaces. The element in the line is the course’s score of the student. All scores are in the range .
Then lines follow, each of them containing a single integer indicating the quality score. All scores are in the range .
You can assume every student’s name, basis score and final score are unique, and is a multiple of .
Output
For every test case, you should output Case #k:
first in a single line, where indicates the case number and starts at . Then output the final ranklist of top 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