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
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include <iostream>
#include <vector>
#include <deque>
#include <algorithm>
using namespace std;
const int stala=3010;
vector<int>pom;
int tab[stala];
int ktory[stala];
int krawedz[stala];
bool o[stala];
vector<int>wektor[stala];
deque<int>wyn[stala];
bool xyz=true,same_jedynki=true;
void dfs(int k,int nr)
{
    wektor[nr].push_back(k);
    o[k]=1;
    if(o[krawedz[k]]==0)
    {
        dfs(krawedz[k],nr);
    }
}
void first_matching(int nr)
{
    if((int)wektor[nr].size()==1)
    {
        return;
    }
    if((int)wektor[nr].size()==2)
    {
        same_jedynki=false;
        wyn[1].push_front(wektor[nr][0]);
        wyn[1].push_back(wektor[nr][1]);
    }
    else
    {
        same_jedynki=false;
        xyz=false;
        wyn[1].push_front(wektor[nr][0]);
        wyn[1].push_back(wektor[nr][1]);
        int index=(int)wektor[nr].size();
        for(int i=2; i<(int)wektor[nr].size(); i++)
        {
            index--;
            if(i<index)
            {
                wyn[1].push_front(wektor[nr][i]);
                wyn[1].push_back(wektor[nr][index]);
            }
            else
            {
                break;
            }
        }
    }
}
void second_matching(int nr)
{
    if((int)wektor[nr].size()>2)
    {
        wyn[2].push_front(wektor[nr][0]);
        wyn[2].push_back(wektor[nr][2]);
        int index=(int)wektor[nr].size();
        for(int i=3; i<(int)wektor[nr].size(); i++)
        {
            index--;
            if(i<index)
            {
                wyn[2].push_front(wektor[nr][i]);
                wyn[2].push_back(wektor[nr][index]);
            }
            else
            {
                break;
            }
        }
    }
}
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int ile;
    cin>>ile;
    for(int i=1; i<=ile; i++)
    {
        cin>>tab[i];
        pom.push_back(tab[i]);
    }
    sort(pom.begin(),pom.end());
    for(int i=0; i<(int)pom.size(); i++)
    {
        ktory[pom[i]]=i+1;
    }
    for(int i=1; i<=ile; i++)
    {
        krawedz[i]=ktory[tab[i]];
    }
    int ile_cykli=0;
    for(int i=1; i<=ile; i++)
    {
        if(o[i]==0)
        {
            ile_cykli++;
            dfs(i,ile_cykli);
        }
    }
    for(int i=1; i<=ile_cykli; i++)
    {
        first_matching(i);
    }
    int odp;
    if(same_jedynki==true)
    {
        odp=0;
    }
    else if(xyz==true)
    {
        odp=1;
    }
    else
    {
        odp=2;
        for(int i=1; i<=ile_cykli; i++)
        {
            second_matching(i);
        }
    }
    cout<<odp<<"\n";
    for(int i=1; i<=odp; i++)
    {
        cout<<(int)wyn[i].size()<<"\n";
        for(int j=0; j<(int)wyn[i].size(); j++)
        {
            cout<<wyn[i][j]<<" ";
        }
        cout<<"\n";
    }


    return 0;
}