#Lutece0449. Fruit Ninja
Fruit Ninja
Migrated from Lutece 449 Fruit Ninja
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
These days wolf5x is addicted to a game on the mobile phone called Fruit Ninja. In this game, some fruits will be thrown up into the air, while the player should swipe his finger as a blade across the screen to slash them. Sometimes bombs are thrown out too, and he must avoid them, for he doesn’t want to be blown to pieces. But wolf5x is really a poor player and often misses the target. He thinks this is because the blade is so difficult to use. So he changes his weapon to a rectangular BanZhuan. Now wolf5x wants to use this to smash as many fruits as possible while no bomb is touched. Also he wants to know how many ways there are to reach the goal. Can you help him to figure out the answer?
To make it clear, we regard the fruits and bombs as points on the plane. The BanZhuan is an rectangle. We require that the -edge of the BanZhuan be paralleled to the -axis, and the -edge be paralleled to the -axis. The fruits or the bombs on the edge of the BanZhuan are considered touched. Two ways are different if the BanZhuan doesn't smash exactly the same area.
Input
Multiple cases. On the first line is an integer indicating the case number.
In each case, first come three integers in a line separated by spaces. is the number of objects(fruits and bombs in total). and are the height and the width of the BanZhuan.
Then follow lines in the format , where is letter G
or B
, indicating this is a Good fruit or a Bomb. and are integers. is the coordinate of the object. No two objects are overlapped.
For all cases, , .
Output
First line, if there are finite ways to get maximum number of fruits, output an integer, the number of ways. Otherwise output so many!
.
Second line, and integer, the maximum number of fruits wolf5x can smash at one time.
Output a blank line after each case.
Samples
3
4 2 3
G 0 1
G 0 2
G 1 2
G 3 0
4 2 3
B 0 1
B 0 2
G 1 2
G 3 0
4 2 3
B 0 1
B 1 2
G 1 1
B 3 0
1
4
so many!
2
so many!
0
Note
In the first sample, if we put the lower-left vertex of the BanZhuan at and the upper-right vertex at , then we can smash all the four fruits. And this is the only way to get all of them.
Resources
5th BUPT Programming Contest Final