#Lutece0005. Diligent Boys Don’t Love
Diligent Boys Don’t Love
Migrated from Lutece 5 Diligent Boys Don’t Love
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
Zplinti1 is a student in UESTC, a school full of beautiful girls. As a diligent boy, he has no interest in girls and just wants to study hard and gets a good remark when graduating, so that he can get a postgraduate recommendation, which means he can directly to continue his study for post-graduate session without taking exams.
The policy for a postgraduate recommendation in UESTC is as follows:
- The Base Score. That is the weighted mean score for all compulsory courses. You have n such courses, each with a full mark as points. The Base Score is calculated in this way: for each course , there is a weight as , and suppose your score is . Then the Base Score is calculated as $\frac{\sum_{i = 0}^{n - 1}A_i\times B_i}{\sum_{i = 0}^{n - 1} B_i}$.Please note that all must be no less than , otherwise you can’t get the recommendation.
- Attending other contests can bring extra points. First Prize – points, Second Prize – points, and Third Prize – point. The points are directly added to the Base Score. A student can attend at most contests.
Here is how zplinti1 studies in UESTC:
-
For each course i, zplinti1 has an array , which is the time he needs to study to improve his result on the course, from points to points.
-
Zplinti1 finds, after taking a certain contest, it is easier for him to study some courses. In other word, it will affect his initial score for some courses. Here, initial score of a course means the score he will get without paying any time studying that course. If he doesn’t attend any contests, the initial score for every course should be zero.
The new policy of UESTC gives students more freedom: They can study all the four-year’s courses freely, which means they can arrange their time as they like, study the courses in any order, as long as they finish all the courses in a certain time. The contest can be arranged freely also.
Zplinti1 wants to know his highest possible score, if he makes a proper plan. Zplinti1 cannot do multiple things at the same time, i.e. he can only learn a single course or participate in a single contest at the same time.
Input
The first line of input contains a number , indicating the number of test cases. ().
For each case, the first line are two integers and (), means that there are courses and zplinti1 has time to study in total. Following lines, each line comes an integer first, followed by ten integers . ($0\leq i < n, 0\leq j < 10, 1\leq times[i][j]\leq 5, 1\leq B_i\leq 5$)
Next six lines describe the two contests. For each contest, the line comes with an integer at first, which means that if zplinti1 wants to get points in this contest he needs to spend time. Then followed by integers , which means that for course , its initial score will become , if zplinti1 gets points in this contest.($1\leq k\leq 3,0\leq t < n,1\leq pt_k\leq 1000,0\leq base[k][t]\leq 10$)
Output
For each case, output Case #i:
first. ( is the number of the test case, from to ). Then output highest possible score zplinti1 can get(round to two decimal places). If zplinti1 can’t get the recommendation output Impossible
instead.
Samples
3
1 9
2 1 1 1 1 1 2 2 2 2 2
4 2
5 3
7 5
3 1
5 4
6 6
1 10
2 5 5 5 5 5 5 5 5 5 5
5 0
10 0
15 0
5 1
10 2
15 3
2 20
2 1 1 1 1 1 1 1 1 1 1
3 2 2 2 2 2 2 2 2 2 2
6 1 2
9 2 3
14 3 5
5 2 1
8 3 2
15 5 4
Case #1: 73.00
Case #2: Impossible
Case #3: 68.00
Note
If zplinti1 has attended both two contests, and those two contests’ influence on a course’s initial score is different, we will take the higher one.
For example, if in the first contest, , and in the second contest, , then if zplinti1 has got points in the contest and points in the contest, his initial score for course t will be .
Resources
The 11th UESTC Programming Contest Final