测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11119. Sorting by Subsequences

编程题 普及/提高-

题目描述

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

说明/提示

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.
上一题 去做题 下一题