1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include<bits/stdc++.h>
#define fi first
#define se second
using namespace std;
const int N=3e3;
pair<int,int> tab[N+10];
vector<pair<int,int>> ans[N+10];
bool vis[N+10];
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	int n;
	int w=0;
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		cin>>tab[i].fi;
		tab[i].se=i;
	}
	sort(tab+1,tab+n+1);
	for(int i=1;i<=n;i++)
	{
		if(vis[i])
			continue;
		vector<int> t;
		for(int j=i;!vis[j];j=tab[j].se)
		{
			t.push_back(j);
			vis[j]=true;
		}
		if(t.size()==1)
			continue;
		else if(t.size()==2)
		{
			w=max(w,1);
			ans[1].emplace_back(t[0],t[1]);
			continue;
		}
		w=max(w,2);
		int k=t.size();
		for(int j=1;j<k-j;j++)
			ans[1].emplace_back(t[j],t[k-j]);
		for(int j=0;j<k-j-1;j++)
			ans[2].emplace_back(t[j],t[k-j-1]);
	}
	cout<<w<<"\n";
	for(int i=1;i<=w;i++)
	{
		cout<<2*ans[i].size()<<"\n";
		for(auto [a,b]:ans[i])
			cout<<a<<" ";
		reverse(ans[i].begin(),ans[i].end());
		for(auto [a,b]:ans[i])
			cout<<b<<" ";
		cout<<"\n";
	}
	return 0;
}