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
61
62
63
64
65
#include <bits/stdc++.h>
#define ll long long
using namespace std;

pair<int,int> tab[100100];
pair<int,int> tab2[100100];
bool cr[100100];
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n,w=0;
    cin>>n;
    for(int i =0 ;i < n ;i ++)
    {
        cin>>tab[i].first;
        tab[i].second=i;
        tab2[i].first=tab[i].first;
    }
    sort(tab,tab+n);
    for(int i = 0 ;i < n; i++)
        tab2[tab[i].second].second=i;
    vector<int> W;
    while(1)
    {
        for(int i = 0 ;i < n ;i ++)cr[i]=0;
        bool flaga=1;
        vector<pair<int,int>> sol;
        for(int i = 0 ;i < n ;i ++)
        {
            if(i!=tab2[i].second&&cr[i]==0&&cr[tab2[i].second]==0)
            {
                sol.push_back({i,tab2[i].second});
                cr[i]=1;
                cr[tab2[i].second]=1;
                flaga=0;
                swap(tab2[i],tab2[tab2[i].second]);
            }
        }
        if(flaga)break;
        w++;
        W.push_back(sol.size()*2);
        for(int i = 0 ; i <sol.size();i++)
            W.push_back(sol[i].first+1);
        for(int i = sol.size()-1 ; i >=0;i--)
            W.push_back(sol[i].second+1);
    }
    cout<<w<<"\n";
    int j=0;
    for(int i = 0 ; i < w; i ++)
    {
        int I=W[j]+j;
        cout<<W[j]<<"\n";
        j++;
        for(;j<=I;j++)
        {
            cout<<W[j]<<' ';
        }
        cout<<"\n";
        

    }
    return 0;
}