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
#include <iostream>
#include <fstream>
#include <algorithm>

using namespace std;

int n;

struct perm{
    int * s;
    perm(){
        s=new int[n];
    }
    ~perm(){
        delete[] s;
    }
    perm operator*(const perm& Prawy) const{
        perm zwrot;
        for(int i=0; i<n; i++)
            zwrot.s[i]=s[Prawy.s[i]];
        return zwrot;
    }
    bool operator==(const perm& Prawy) const{
        for(int i=0; i<n; i++)
            if(s[i]!=Prawy.s[i]) return 0;
        return 1;
    }
    perm odw(){
        perm zwrot;
        for(int i=0; i<n; i++)
            zwrot.s[s[i]]=i;
        return zwrot;
    }
    void rozklad(perm& s1, perm& s2){
        int * czyodw = new int[n];
        for(int i=0; i<n; i++) czyodw[i]=0;
        int dl;
        int * cykl = new int [n];
        for(int i=0; i<n; i++)
        if(czyodw[i]==0){
            dl=0;
            int zmpom=i;
            while(1){
                cykl[dl++] = zmpom;
                czyodw[zmpom]=1;
                zmpom = s[zmpom];
                if(zmpom==i) break;
            }
            for(int j=0; j<dl; j++)
                s2.s[cykl[j]] = cykl[(dl-j) % dl];
            for(int j=0; j<dl; j++)
                s1.s[cykl[j]] = cykl[(dl+1-j) % dl];
        }
        delete[] cykl;
        delete[] czyodw;
    }

    bool istriv(){
        for(int i=0; i<n; i++)
            if(s[i]!=i) return 0;
        return 1;
    }

    bool isinv(){
        for(int i=0; i<n; i++)
            if(s[s[i]]!=i) return 0;
        return 1;
    }

    void wypisz(){
        int dl=0;
        int * czyodw = new int[n];
        for(int i=0; i<n; i++) czyodw[i]=0;
        for(int i=0; i<n; i++)
            dl+=(s[i]!=i);
        int * odp = new int[dl];
        int j=0;
        for(int i=0; i<n; i++)
        if(s[i]!=i && czyodw[i]==0){
            odp[j]=i;
            odp[dl-1-j]=s[i];
            j++;
            czyodw[i]=1;
            czyodw[s[i]]=1;
        }
        printf("%d\n", dl);

        for(int j=0; j<dl; j++)
            printf("%d ", odp[j]+1);
        delete[] odp;
        delete[] czyodw;
        printf("\n");
        //for(int i=0; i<n; i++) cout << s[i]+1 << " ";
        //cout << endl;
    }
};

pair<int, int> * wzrosty;

int main()
{
    scanf("%d", &n);
    wzrosty = new pair<int, int>[n];
    for(int i=0; i<n; i++){
        int zmpom;
        scanf("%d", & zmpom);
        wzrosty[i]=pair<int, int>(zmpom, i);
    }
    sort(wzrosty, wzrosty+n);
    /*
    for(int i=0; i<n; i++){
        printf("%d\t%d\n", wzrosty[i].first, wzrosty[i].second);
    }
    */
    perm A, B, C;
    for(int i=0; i<n; i++){
        A.s[wzrosty[i].second]=i;
    }
    if(A.istriv()){
        printf("0\n");
    } else
    if(A.isinv()) {
        printf("1\n");
        A.wypisz(); }
    else{
        printf("2\n");
        A.rozklad(B, C);
        C.wypisz();
        B.wypisz();
    }
    return 0;
}