题库练习 Sorting by Subsequences
← 上一题 下一题 →

A11119 | Sorting by Subsequences

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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.

输入格式

The first line of input data contains integer $n$ ( $1<=n<=10^{5}$ ) — the length of the sequence.

The second line of input data contains $n$ different integers $a_{1},a_{2},...,a_{n}$ ( $-10^{9}<=a_{i}<=10^{9}$ ) — the elements of the sequence. It is guaranteed that all elements of the sequence are distinct.

输出格式

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<c_{i}<=n$ ), then $c_{i}$ integers $l_{1},l_{2},...,l_{ci}$ ( $1<=l_{j}<=n$ ) — indices of these elements in the original sequence.

Indices could be printed in any order. Every index from $1$ to $n$ must appear in output exactly once.

If there are several possible answers, print any of them.

输入输出样例

输入 #1
6
3 2 1 6 5 4
输出 #1
4
2 1 3
1 2
2 4 6
1 5
输入 #2
6
83 -75 -49 11 37 62
输出 #2
1
6 1 2 3 4 5 6
C++ 编辑器
输入
输出