#Lutece0813. In the Park
In the Park
Migrated from Lutece 813 In the Park
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
Kufeng has bought a big park with interesting places. He offered all members in UESTC ACM-ICPC team a free visit to the park.
However, Kufeng has set some special plans for visit, each plan corresponds to a subset of places the visitor can visit. There are plans in total.
Each team member should choose a plan offered by Kufeng before getting into the park, and only visit those places that are allowed to visit by the plan. Different members might choose the same plan.
There are members in the team. We are interested to know, how many ways are there for choosing plans, such that each place in the park is visited by at least a member in the team?
Two ways for choosing plans are considered different, if at least one member in the team chooses different visit plans in those two ways.
Input
The first line of input contains three numbers , and (), they are the number of places in the park, the number of visiting plans, and the number of members in the team.
The following m blocks each with two lines, describing the visiting plans. The first lines come with a number , the number of places this plan can visit. The second line come with numbers ( and all the are different), the id of each place.
Output
Output the number of ways, in which each member choose a visit plan, that make sure that each place are visited by at least one member?
Since the number might be large, just output the number module .
Samples
4 4 2
2
1 2
3
1 2 3
3
1 3 4
3
2 3 4
10
Note
Here module
means %
operator in both C++ and Java.
There are ways to choose the plan in example, they are $(1,3), (1,4), (2,3), (2,4), (3,1), (3,2), (3,4), (4,1), (4,2), (4,3)$.
Resources
the 12th UESTC Programming Contest Final