CF843A.Sorting by Subsequences

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a sequence a1,a2,...,ana_{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 nn ( 1<=n<=1051<=n<=10^{5} ) — the length of the sequence.

The second line of input data contains nn different integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 109<=ai<=109-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 kk , which the original sequence can be split into while fulfilling the requirements.

In the next kk lines print the description of subsequences in the following format: the number of elements in subsequence cic_{i} ( 0<ci<=n0<c_{i}<=n ), then cic_{i} integers l1,l2,...,lcil_{1},l_{2},...,l_{ci} ( 1<=lj<=n1<=l_{j}<=n ) — indices of these elements in the original sequence.

Indices could be printed in any order. Every index from 11 to nn 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 41 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 61 2 3 4 5 6 .

Sorting the last subsequence changes nothing.

首页