Hide

Problem C
Kitchen Combinatorics

/problems/kitchencombinatorics/file/statement/en/img-0001.jpg
Picture by HarshLight via Flickr
The world-renowned Swedish Chef is planning a gourmet three-course dinner for some muppets: a starter course, a main course, and a dessert. His famous Swedish cook-book offers a wide variety of choices for each of these three courses, though some of them do not go well together (for instance, you of course cannot serve chocolate moose and sooted shreemp at the same dinner).

Each potential dish has a list of ingredients. Each ingredient is in turn available from a few different brands. Each brand is of course unique in its own special way, so using a particular brand of an ingredient will always result in a completely different dinner experience than using another brand of the same ingredient.

Some common ingredients such as pølårber may appear in two of the three chosen dishes, or in all three of them. When an ingredient is used in more than one of the three selected dishes, Swedish Chef will use the same brand of the ingredient in all of them.

While waiting for the meecaroo, Swedish Chef starts wondering: how many different dinner experiences are there that he could make, by different choices of dishes and brands for the ingredients?

Input

The input consists of:

  • one line containing five integers r, s, m, d, n, where 1r1000 is the number of different ingredients that exist, 1s,m,d25 are the number of available starter dishes, main dishes, and desserts, respectively, and 0n2000 is the number of pairs of dishes that do not go well together.

  • one line containing r integers b1,,br, where 1bi100 is the number of different brands of ingredient i.

  • s+m+d lines describing the s starter dishes, then the m main dishes, then the d desserts. Each such line starts with an integer 1k20 denoting the number of ingredients of the dish, and is followed by k distinct integers i1,,ik, where for each 1jk, 1ijr is an ingredient.

  • n lines each containing two incompatible dishes. Each dish is identified by an integer 1js+m+d, referring to the j’th dish given in the input (so 1js refers to the starter dishes, s<js+m refers to the main dishes, and s+m<js+m+d refers to the desserts).

Each pair of incompatible dishes in the input consists of two dishes of different types, and any one pair of dishes is listed at most once.

Output

If the number of different dinner experiences Swedish Chef can make is at most 1018, then output that number. Otherwise, output “too many”.

Sample Input 1 Sample Output 1
6 1 1 1 0
2 3 1 5 3 2
2 1 2
3 3 4 5
1 6
180
Sample Input 2 Sample Output 2
3 2 2 1 1
2 3 2
1 1
1 2
1 2
1 3
1 1
2 3
22
Sample Input 3 Sample Output 3
3 1 1 1 1
5 5 5
3 1 2 3
3 1 2 3
3 1 2 3
2 1
0
Sample Input 4 Sample Output 4
10 1 1 1 0
100 100 100 100 100 100 100 100 100 100
4 1 2 3 4
3 5 6 7
3 8 9 10
too many
Hide

Please log in to submit a solution to this problem

Log in