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
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <deque>


using namespace std;

//vector<int> daneWE;

//void swapuj(vector<int>& dane, const deque<int>& swapy)
//{
//    auto it=swapy.begin();
//    auto itr=swapy.rbegin();
//    for (int ii=0; ii<(int)swapy.size()/2; ii++, ++it, ++itr)
//    {
//        int ii1=(*it)-1, ii2=(*itr)-1;
//        swap(dane[ii1], dane[ii2]);
//    }
//}
//void sprawdz(const deque<int>& swapy1, const deque<int>& swapy2)
//{
//    vector<int> dane(daneWE);
//    cout<<"Sprawdzenie:"<<endl;
//    swapuj(dane, swapy1);
//    for (auto dit=dane.begin(); dit!=dane.end(); ++dit)
//        cout<<*dit<<' ';
//    cout<<endl;
//    swapuj(dane, swapy2);
//    for (auto dit=dane.begin(); dit!=dane.end(); ++dit)
//        cout<<*dit<<' ';
//    cout<<endl;
//}



vector<int> WczystajPoczPermutacje(int n)
{
    vector<pair<int,int>> wzrost;
    int val;
    for (int ii=0; ii<n; ii++)
    {
        cin>>val;
        wzrost.push_back(make_pair(val, ii));
//        daneWE.push_back(val);
    }
    sort(wzrost.begin(), wzrost.end());

    // permutacja sortujaca stan poczatkowy
    vector<int> permutacja(n);
    for(int ii=0; ii<n; ii++)
        permutacja[wzrost[ii].second] = ii;

    return permutacja;
}


int main()
{
    int n;
    cin>>n;
    vector<int> permutacja = WczystajPoczPermutacje(n); // permutacja sortujaca stan poczatkowy


    // podziel permutacje na cykle
    vector<bool> odwiedzone(n, false);
    deque<int> swapy1, swapy2;
    for(int ii=0; ii<n; ii++)
    {
        if (odwiedzone[ii]==false)
        {
            // znajdz cykl w permutacji
            vector<int> cykl;
            int start_ind = ii, ind=start_ind;
            do
            {
                cykl.push_back(ind);
                odwiedzone[ind] = true;
                ind = permutacja[ind];

            } while(ind != start_ind);

            // zaplanuj 2 serie swapow realizujace permutacje w obecnym cyklu
            // -> 1. odwrocenie cyklu - zamien 1 z ostatnim, 2 z przedostatnim,...
            int jj=0, kk=cykl.size()-1;
            while(jj<kk)
            {
                swapy1.push_front(cykl[jj] +1);
                swapy1.push_back(cykl[kk] +1);
                jj++; kk--;
            }
            // -> 2. odwrocenie cyklu bez pierwszego elementu
            jj=1, kk=cykl.size()-1;
            while(jj<kk)
            {
                swapy2.push_front(cykl[jj] +1);
                swapy2.push_back(cykl[kk] +1);
                jj++; kk--;
            }
        }
    }

    // wypisz rozwiazanie
    if (swapy1.empty())
        cout << 0 << endl;
    else if (swapy2.empty())
    {
        cout << 1 << endl;
        cout << swapy1.size() << endl;
        for (auto it = swapy1.begin(); it!=swapy1.end(); ++it)
            cout << *it << ' ';
        cout<<endl;
    }
    else
    {
        cout << 2 << endl;
        cout << swapy1.size() << endl;
        for (auto it = swapy1.begin(); it!=swapy1.end(); ++it)
            cout << *it << ' ';
        cout<<endl;
        cout << swapy2.size() << endl;
        for (auto it = swapy2.begin(); it!=swapy2.end(); ++it)
            cout << *it << ' ';
        cout<<endl;
    }


    // sprawdzenie
//    sprawdz(swapy1, swapy2);

    return 0;
}