#Lutece0741. Boss Rush
Boss Rush
Migrated from Lutece 741 Boss Rush
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
You are playing the fantastic new game Mega Man XIII-2
.
Unfortunately, the boss fights in the game are extremely hard. You have access to several weapons, like the PowerLaser, the EvilRocket and the PsychTerror. Each weapon belongs to one of three categories: laser, rocket and psiotic. In order to defeat a boss you must use three weapons, one from each category. A given boss is only vulnerable against a subset of the weapons, but you have studied the bosses in advance and know which weapons you can use against each of them.
You start the game with two of every available weapon. As the game progresses, you encounter every boss in a predefined order. For each boss fight, you choose one weapon from each category, and after the fight those three weapons are worn out and cannot be used again.
In order to progress as far as possible into the game, you need to select your weapons carefully. You don't want to lose against the last boss because you already spent the needed weapons in the beginning of the game! However, you are overwhelmed by the number of ways you can pick weapons against the bosses, so you have decided to write a computer program that determines the maximum number of bosses you can defeat if you pick the weapons for each boss fight optimally.
Input
The first line of the input consists of a single integer , the number of test cases. Each test case begins with a line containing a single integer , the number of bosses in the play session. Then groups of lines follow, a total of lines. The group of lines describes which weapons can be used to defeat boss from the categories laser, rocket and psiotic, respectively (one line for each category). These lines start with an integer , the number of weapons from the category that can be used to defeat boss .The remainder of a line contains space-separated strings containing the names of the weapons.
Output
For each test case, output on a single line , the maximal number of bosses you can beat.
Samples
1
4
3 UltraLaser TurboLaser PowerLaser
2 EvilRocket ShatterRocket
3 PsychTerror Wisp Shutdown
2 UltraLaser TurboLaser
2 ShatterRocket PropelledCannon
1 Wisp
2 UltraLaser TurboLaser
2 PropelledCannon EvilRocket
1 Wisp
3 UltraLaser TurboLaser PowerLaser
2 EvilRocket ShatterRocket
1 Wisp
3
Note
All string lengths are between and , inclusive.
A string only consists of upper- and lowercase letters from a
to z
.
Resources
IDI Open Programming Contest April 21st, 2012 - NTNU