eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Inspection

Inspection

You are in charge of a team that inspects a new ski resort. A ski resort is situated on several mountains and consists of a number of slopes. Slopes are connected with each other, forking and joining. A map of the ski resort is represented as an acyclic directed graph. Nodes of the graph represent different points in ski resort and edges of the graph represent slopes between the points, with the direction of edges going downwards. Your team has to inspect each slope of the ski resort. Ski lifts on this resort are not open yet, but you have a helicopter. In one flight the helicopter can drop one person into any point of the resort. From the drop off point the person can ski down the slopes, inspecting each slope as they ski. It is fine to inspect the same slope multiple times, but you have to minimize the usage of the helicopter. So, you have to figure out how to inspect all the slopes with the fewest number of helicopter flights. \InputFile The first line of the input file contains a single integer number \textit{n }(2 ≤\textit{ n ≤ }100) -- the number of points in the ski resort. The following \textit{n }lines of the input file describe each point of the ski resort numbered from 1 to \textit{n}. Each line starts with a single integer number \textit{m_i }(0 ≤\textit{ m_i < n }for \textit{i }from 1 to \textit{n}) and is followed by \textit{m_i }integer numbers \textit{a_ij }separated by spaces. All \textit{a_ij }are distinct for each \textit{i }and each \textit{a_ij }(1 ≤\textit{ a_ij ≤ n}, \textit{a_ij }≠ \textit{i}) represents a slope going downwards from point \textit{i }to point \textit{a_ij}. Each point in the resort has at least one slope connected to it. \OutputFile On the first line of the output file write a single integer number \textit{k --} the minimal number of helicopter flights that are needed to inspect all slopes. Then write \textit{k }lines that describe inspection routes for each helicopter flight. Each route shall start with single integer number from 1 to \textit{n --} the number of the drop off point for the helicopter flight, followed by the numbers of points that will be visited during inspection in the corresponding order as the slopes are inspected going downwards. Numbers on a line shall be separated by spaces. You can write routes in any order.
Ліміт часу 1 секунда
Ліміт використання пам'яті 64 MiB
Вхідні дані #1
8
1 3
1 7
2 4 5
1 8
1 8
0
2 6 5
0
Вихідні дані #1
4
1 3 4 8
2 7 5 8
3 5
7 6
Автор Roman Elizarov