#Lutece0699. Captain Is Coding!
Captain Is Coding!
Migrated from Lutece 699 Captain Is Coding!
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
To improve players’ coding skill, FJ collects a variety of problems and order the players to solve them. In order to ensure they can complete the task, FJ divides the problems into two collections and issues a deadline for each one. He announces that anyone who cannot complete all the problems in both two collections before the deadline will be downgraded to be an alternative member.
Now we focus on Captain Chen. The coding skill can be qualified as an integer, which indicates the level of his coding skill. The higher the level is, the faster and the more accurately Captain Chen codes. To solve the problem, at least level of coding skill is needed. But after getting Accepted on it, Captain Chen will improve his coding skill by .
In each hour, Captain Chen can either try to solve one problem, or just to practice typing. If he practices typing for one hour, his coding skill will be increased by . Please notice that if he gets Accepted on the same problem twice, the second Accepted won’t benefit him anymore. What’s more, if Captain Chen decides to practice, he will keep practicing for a whole hour.
Now, he wonders if he is able to solve all the problems on time. If so, he also wonders the minimum time needed to accomplish this task.
Can you help Captain Chen?
Input
The first line of input contains a single integer , indicating there are cases.
In each case, the first line contains five integers: , the numbers of problems; , the deadline of collection ; , the deadline of collection ; , the initial level of Captain Chen; and , which was mentioned above. Next there are lines, each of which describes one problem and contains two integers and . Following the and , there is a character at the end of each line. The character is either A
or B
, indicating which collection the problem belongs to.
We guarantee that , , , , , .Note that if the deadline of a collection is , you can solve it in hours but not in hours.
Output
The output of each test case contains a single line. If Captain Chen can solve all the problems before their deadlines, the output should be the minimum time needed to complete it, measured in hour. Otherwise just output Poor Captain Chen
Samples
2
2 10 30 5 1
10 5 A
30 5 B
2 10 20 5 1
10 5 A
30 5 B
22
Poor Captain Chen
Resources
The 7th BUPT Collegiate Programming Contest