Hide

Problem E
Firetrucks Are Red

/problems/firetrucksarered/file/statement/en/img-0001.jpg
Numbers by Ksayer1 on Flickr, cc by-sa
Lily is fascinated by numbers. She believes the whole world revolves around them, and that everything is connected by numbers. Her friends, Alice, Bob, Charlie and Diane, are not convinced. But she gives them an example:
Alice lives in house number 25 on her street, but that is exactly Bob’s age. Bob is born on June 4th, and Charlie was his parents’ fourth child. Finally, Diane has five fingers on her left hand, which happens to be the same as the number of toes that Bob has on his right foot!

This shows that her friends are all connected—either directly or indirectly—by numbers. But she still has to convince her family as well as her coworkers.

Given a group of $n$ individuals, and a set of numbers that describe each individual, help Lily come up with a proof that shows that everyone in this group is either directly or indirectly connected by numbers, or determine that this is not possible.

Input

The input consists of:

  • One line with an integer $n$ ($2 \leq n \leq 2\cdot 10^5$), the number of individuals in the group. The individuals are numbered from $1$ to $n$.

  • $n$ lines, describing the individuals in the group.

    The $i$th such line starts with an integer $m_ i$ ($1 \leq m_ i \leq 2\cdot 10^5$), the number of numbers that describe individual $i$.

    The remainder of the line has $m_ i$ distinct integers $d_{i,1},\ldots ,d_{i,m_ i}$ ($1 \leq d_{i,j} \leq 10^9$ for each $j$), the set of numbers that describe individual $i$.

It is guaranteed that the sum over all $m_ i$ is at most $2\cdot 10^5$.

Output

Output a proof in the form of $n-1$ lines, each of which contains three integers $p$, $q$ and $r$, where $p$ and $q$ are distinct individuals that are both described by the number $r$. Using only these relations, it must be possible to show that any pair of individuals in the group are connected either directly or indirectly.

If no such proof exists, output “impossible”. If there are multiple proofs, you may output any one of them.

Sample Input 1 Sample Output 1
6
2 17 10
1 5
2 10 22
3 17 22 9
2 17 8
3 9 22 16
impossible
Sample Input 2 Sample Output 2
6
2 17 10
2 5 10
2 10 22
3 17 22 9
2 17 8
3 9 22 16
1 3 10
2 3 10
3 4 22
4 5 17
4 6 9

Please log in to submit a solution to this problem

Log in