Google Code Jam '08 Round 1A Problem B - Milkshakes

View as PDF

Submit solution

Points: 7 (partial)
Time limit: 30.0s
Memory limit: 1G

Problem type

You own a milkshake shop. There are N different flavors that you can prepare, and each flavor can be prepared "malted" or "unmalted". So, you can make 2N 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 N 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 C, the number of test cases in the input file.

For each test case, there will be:

  • One line containing the integer N, the number of milkshake flavors.
  • One line containing the integer M, the number of customers.
  • M lines, one for each customer, each containing:
    • An integer T \ge 1, the number of milkshake types the customer likes, followed by
    • T pairs of integers "X Y", one for each type the customer likes, where X is the milkshake flavor between 1 and N inclusive, and Y is either 0 to indicate unmalted, or 1 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 (T \ge 1).
      • Each customer will like at most one malted flavor. (At most one pair for each customer has Y = 1).

All of these numbers are separated by single spaces.

Output Specification

C lines, one for each test case in the order they occur in the input file, each containing the string Case #X: where X is the number of the test case, starting from 1, followed by:

  • The string IMPOSSIBLE, if the customers' preferences cannot be satisfied; OR
  • N space-separated integers, one for each flavor from 1 to N, 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

C = 100

1 \le N \le 10

1 \le M \le 100

Large Dataset

C = 5

1 \le N \le 2000

1 \le M \le 2000

The sum of all the T values for the customers in a test case will not exceed 3000.

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

There are no comments at the moment.