CF843A Sorting by Subsequences

Description

You are given a sequence $ a_{1},a_{2},...,a_{n} $ consisting of different integers. It is required to split this sequence into the maximum number of subsequences such that after sorting integers in each of them in increasing order, the total sequence also will be sorted in increasing order. Sorting integers in a subsequence is a process such that the numbers included in a subsequence are ordered in increasing order, and the numbers which are not included in a subsequence don't change their places. Every element of the sequence must appear in exactly one subsequence.

Input Format

The first line of input data contains integer $ n $ ( $ 1

Output Format

In the first line print the maximum number of subsequences $ k $ , which the original sequence can be split into while fulfilling the requirements. In the next $ k $ lines print the description of subsequences in the following format: the number of elements in subsequence $ c_{i} $ ( $ 0

Explanation/Hint

In the first sample output: After sorting the first subsequence we will get sequence $ 1 2 3 6 5 4 $ . Sorting the second subsequence changes nothing. After sorting the third subsequence we will get sequence $ 1 2 3 4 5 6 $ . Sorting the last subsequence changes nothing.