#Lutece0458. Jamie’s Contact Groups
Jamie’s Contact Groups
Migrated from Lutece 458 Jamie’s Contact Groups
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
Jamie is a very popular girl and has quite a lot of friends, so she always keeps a very long contact list in her cell phone. The contact list has become so long that it often takes a long time for her to browse through the whole list to find a friend's number. As Jamie's best friend and a programming genius, you suggest that she group the contact list and minimize the size of the largest group, so that it will be easier for her to search for a friend's number among the groups. Jamie takes your advice and gives you her entire contact list containing her friends' names, the number of groups she wishes to have and what groups every friend could belong to. Your task is to write a program that takes the list and organizes it into groups such that each friend appears in only one of those groups and the size of the largest group is minimized.
Input
There are multiple cases.The first line is an integer representing the number of test cases. Ease case starts with a line containing two integers and . where is the length of the contact list and is the number of groups. lines then follow. Each line contains a friend's name and a integer represent the numbers of groups the friend could belong to,following numbers describe the groups the friend could belong to . You can assume is no more than and is no more than . The names will contain alphabet letters only and will be no longer than characters. No two friends have the same name. The group label is an integer between and .
Output
For each test case, output one line. First, output Case #C:
, where is the number of test case, from to . Then output a single integer, the size of the largest contact group.
Samples
2
3 2
John 2 0 1
Rose 1 1
Mary 1 1
5 4
ACM 3 1 2 3
ICPC 2 0 1
UESTC 3 0 2 3
Graph 2 1 2
Accepted 2 0 2
Case #1: 2
Case #2: 2
Resources
Shanghai 2004