You own a milkshake shop. There are different flavors that you can prepare, and each flavor can be prepared "malted" or "unmalted". So, you can make different types of milkshakes.
Each of your customers has a set of milkshake types that they like, and they will be satisfied if you have at least one of those types prepared. At most one of the types a customer likes will be a "malted" flavor.
You want to make batches of milkshakes, so that:
- There is exactly one batch for each flavor of milkshake, and it is either malted or unmalted.
- For each customer, you make at least one milkshake type that they like.
- The minimum possible number of batches are malted.
Find whether it is possible to satisfy all your customers given these constraints, and if it is, what milkshake types you should make.
If it is possible to satisfy all your customers, there will be only one answer which minimizes the number of malted batches.
Input Specification
One line containing an integer , the number of test cases in the input file.
For each test case, there will be:
- One line containing the integer , the number of milkshake flavors.
- One line containing the integer , the number of customers.
- lines, one for each customer, each containing:
- An integer , the number of milkshake types the customer likes, followed by
- pairs of integers " ", one for each type the customer likes, where is the milkshake flavor between and inclusive, and is either to indicate unmalted, or to indicated malted.
- No pair will occur more than once for a single customer.
- Each customer will have at least one flavor that they like .
- Each customer will like at most one malted flavor. (At most one pair for each customer has ).
All of these numbers are separated by single spaces.
Output Specification
lines, one for each test case in the order they occur in the input file, each containing the string Case #X:
where is the number of the test case, starting from 1, followed by:
- The string
IMPOSSIBLE
, if the customers' preferences cannot be satisfied; OR - space-separated integers, one for each flavor from to , which are 0 if the corresponding flavor should be prepared unmalted, and 1 if it should be malted.
Limits
Time limit: 30 seconds per test set.
Memory limit: 1 GB.
Small Dataset
Large Dataset
The sum of all the values for the customers in a test case will not exceed .
Sample Input
2
5
3
1 1 1
2 1 0 2 0
1 5 0
1
2
1 1 0
1 1 1
Sample Output
Case #1: 1 0 0 0 0
Case #2: IMPOSSIBLE
In the first case, you must make flavor #1 malted, to satisfy the first customer. Every other flavor can be unmalted. The second customer is satisfied by getting flavor #2 unmalted, and the third customer is satisfied by getting flavor #5 unmalted.
In the second case, there is only one flavor. One of your customers wants it malted and one wants it unmalted. You cannot satisfy them both.
Comments