A. Sorting by Subsequences

You are given a sequence a1, a2, ..., an 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

The first line of input data contains integer n (1 ≤ n ≤ 105) — the length of the sequence.

The second line of input data contains n different integers a1, a2, ..., an ( - 109 ≤ ai ≤ 109) — the elements of the sequence. It is guaranteed that all elements of the sequence are distinct.

Output

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 ci (0 < ci ≤ n), then ci integers l1, l2, ..., lci (1 ≤ lj ≤ 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.

Examples
Input
6
3 2 1 6 5 4
Output
4
2 1 3
1 2
2 4 6
1 5
Input
6
83 -75 -49 11 37 62
Output
1
6 1 2 3 4 5 6
Note

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.

把每一次交换涉及到的元素放到一个集合中。

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <vector>
#include <queue>
#include <stack>
#include <cstdlib>
#include <iomanip>
#include <cmath>
#include <cassert>
#include <ctime>
#include <map>
#include <set>
using namespace std;
#define lowbit(x) (x&(-x))
#define max(x,y) (x>=y?x:y)
#define min(x,y) (x<=y?x:y)
#define MAX 100000000000000000
#define MOD 1000000007
#define pi acos(-1.0)
#define ei exp(1)
#define PI 3.141592653589793238462
#define ios() ios::sync_with_stdio(false)
#define INF 1044266558
#define mem(a) (memset(a,0,sizeof(a)))
typedef long long ll;
int a[],b[],vis[];
int ans,n;
set<int>s;
set<int>::iterator it;
int main()
{
while(scanf("%d",&n)!=EOF)
{
fill(vis,vis+n,);
ans=;
for(int i=;i<n;i++) scanf("%d",&a[i]),b[i]=a[i];
sort(b,b+n);
for(int i=;i<n;i++) a[i]=lower_bound(b,b+n,a[i])-b;
for(int i=;i<n;i++)
{
if(!vis[i])
{
for(int j=a[i];!vis[j];j=a[j]) vis[j]=;
ans++;
}
}
printf("%d\n",ans);
for(int i=;i<n;i++)
{
if(vis[i])
{
s.clear();
for(int j=a[i];vis[j];j=a[j]) s.insert(j+),vis[j]=;
int pos=s.size();
printf("%d",pos);
for(it=s.begin();it!=s.end();it++)
printf(" %d",*it);
printf("\n");
}
}
}
return ;
}

最新文章

  1. putty无密码登陆
  2. 多线程迭代之——LINQ to TaskQuery
  3. 使用MyBatis Generator生成DAO
  4. 重写js alert
  5. MongoDB 日期 插入时少8小时
  6. js基础第一天
  7. hdu 3944 DP? 组合数取模(Lucas定理+预处理+帕斯卡公式优化)
  8. c++primerplus(第六版)编程题&mdash;&mdash;第3章(数据类型)
  9. 定义Foo() 函数,弹出对话框提示当前选中的是第几个单选框
  10. Redis缓存项目应用架构设计二
  11. PHP获取时间戳和微秒数以及生成唯一ID
  12. vi/vim 三种模式的操作
  13. mysql关联表修改语句
  14. java.lang.NoClassDefFoundError: org/bouncycastle/jce/provider/BouncyCastleProvider
  15. Java 注释规范
  16. Quick Find (QF)
  17. python生成随机整数
  18. .net中反射与IOC容器实现
  19. 一个日志模板,从traceback打印异常受启发做的模板,可被pycharm esclip 等ide识别和跳转
  20. 基于pandas python sklearn 的美团某商家的评论分类(文本分类)

热门文章

  1. caffe(13) 数据可视化(python接口)配置
  2. Shell应用之网卡流量监测
  3. STM32的Flash
  4. HBase 1.1.2 优化插入 Region预分配
  5. python list的+,+=,append,extend
  6. Connect the Campus (Uva 10397 Prim || Kruskal + 并查集)
  7. nios sgdma(Scatter-Gather dma)示例
  8. 路径+DataRow+SqlPara防止sql注入
  9. 学习总结--Dom
  10. 【Django】安装及配置