eolymp
bolt
Try our new interface for solving problems
Problems

Guess the Animal

Guess the Animal

When bored of playing their usual shell game, Bessie the cow and her friend Elsie like to play another common game called "guess the animal". Initially, Bessie thinks of some animal (most of the time, this animal is a cow, making the game rather boring, but occasionally Bessie is creative and thinks of something else). Then Elsie proceeds to ask a series of questions to figure out what animal Bessie has selected. Each question asks whether the animal has some specific characteristic, and Bessie answers each question with "yes" or "no". For example: \begin{center} \begin{lstlisting}[language=C++] Elsie: "Животное летает?" Bessie: "нет" Elsie: "Животное ест траву?" Bessie: "да" Elsie: "Животное дает молоко?" Bessie: "да" Elsie: "Животное говорит муу?" Bessie: "да" Elsie: "В таком случае я думаю что это корова." Bessie: "Правильно!" \end{lstlisting} \end{center} If we call the "feasible set" the set of all animals with characteristics consistent with Elsie's questions so far, then Elsie keeps asking questions until the feasible set contains only one animal, after which she announces this animal as her answer. In each question, Elsie picks a characteristic of some animal in the feasible set to ask about (even if this characteristic might not help her narrow down the feasible set any further). She never asks about the same characteristic twice. Given all of the animals that Bessie and Elsie know as well as their characteristics, please determine the maximum number of "yes" answers Elsie could possibly receive before she knows the right animal. \InputFile The first line contains the number of animals $n~(2 \le n \le 100)$. Each of the next $n$ lines describes an animal. The line starts with the animal name, then an integer $k~(1 \le k \le 100)$, then $k$ characteristics of that animal. Animal names and characteristics are strings of up to $20$ lowercase characters $(a .. z)$. No two animals have exactly the same characteristics. \OutputFile Print the maximum number of "yes" answers Elsie could receive before the game ends. \Examples In this example, it is possible for Elsie to generate a transcript with $3$ "yes" answers (the one above), and it is not possible to generate a transcript with more than $3$ "yes" answers.
Time limit 1 second
Memory limit 128 MiB
Input example #1
4
bird 2 flies eatsworms
cow 4 eatsgrass isawesome makesmilk goesmoo
sheep 1 eatsgrass
goat 2 makesmilk eatsgrass
Output example #1
3
Source 2019 USACO January, Bronze