#include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <queue> #include <list> #include <vector> #include <map> #include <set> #include <string> #include <cstring> #include <cassert> #include <limits.h> using namespace std; typedef long long LL; typedef long double LD; typedef vector<int> VI; typedef pair<int,int> PII; #define REP(i,n) for(int i=0;i<(n);i++) #define FOR(i,a,b) for(VAR(i,a);i<=(b);++i) #define FORD(i,a,b) for(VAR(i,a);i>=(b);--i) #define FORE(a,b) for(VAR(a,(b).begin());a!=(b).end();++a) #define VAR(a,b) __typeof(b) a=(b) #define SIZE(a) ((int)((a).size())) #define ALL(x) (x).begin(),(x).end() #define CLR(x,a) memset(x,a,sizeof(x)) #define ZERO(x) memset(x,0,sizeof(x)) #define S(t,i) scanf("%" ## t, &i) #define SI(i) scanf("%d", &i) const int INF=INT_MAX; const int MAXN=3000+5; int n, w[MAXN], p[MAXN]; bool v[MAXN]; list<list<int>> cykle; int main() { ios_base::sync_with_stdio(0); SI(n); FOR(i, 1, n) { int wi; SI(wi); w[wi] = i; } int ni=0; FOR(i, 1, 3000) { if (w[i]) { //p[++ni] = w[i]; p[w[i]] = ++ni; } } int doZrobienia = 0; FOR(i, 1, n) { if (p[i] != i) { doZrobienia++; } // printf("%d ", p[i]); } // printf("\n"); list<list<int>> allStarts, allTails; int turns=0; while (doZrobienia>0) { turns++; FOR(i, 1, n) { v[i] = (p[i] == i); } list<int> tails; list<int> starts; FOR(i, 1, n) { if (!v[i] && !v[p[i]]) { v[i] = true; // printf("%d ", i); starts.push_back(i); tails.push_front(p[i]); v[p[i]] = true; swap(p[i], p[p[i]]); } } allStarts.push_back(starts); allTails.push_back(tails); // FORE(ti, tails) { // printf("%d ", *ti); // } // printf("\n"); doZrobienia=0; FOR(i, 1, n) { if (p[i] != i) { doZrobienia++; } // printf("%d ", p[i]); } // printf("\n"); } printf("%d\n", turns); list<list<int>>::iterator turni = allTails.begin(); FORE(starti, allStarts) { printf("%lu\n", 2*(*starti).size()); FORE(el, *starti) { printf("%d ", *el); } FORE(el, *turni) { printf("%d ", *el); } ++turni; printf("\n"); } // FOR(i, 1, n) { // printf("%d %d\n", i, p[i]); // } // return 0; // unsigned long int maxLength = 0; // FOR(i, 1, n) { // if (v[i]) continue; // // int pi = i; // list<int> li; // while (!v[pi]) { // v[pi] = true; // li.push_back(pi); // // pi = p[pi]; // } // if (li.size() > 1) { // cykle.push_back(li); // } // maxLength = max(maxLength, li.size()); // } // printf("%lu\n", maxLength-1); // REP(xyz, maxLength-1) { // printf("%lu\n", cykle.size()*2); // list<int> tails; // for (list<list<int>>::iterator cykl = cykle.begin(); cykl != cykle.end();) { // printf("%d ", (*cykl).front()); // list<int>::iterator nextElement = ++(*cykl).begin(); // tails.push_front(*nextElement); // (*cykl).erase(nextElement); // list<list<int>>::iterator poprzedniCykl = cykl++; // if ((*poprzedniCykl).size() < 2) { // cykle.erase(poprzedniCykl); // } // } // FORE(ti, tails) { // printf("%d ", *ti); // } // printf("\n"); // } return 0; }
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 145 146 147 148 149 150 151 152 153 154 155 156 157 | #include <cstdio> #include <cmath> #include <iostream> #include <algorithm> #include <queue> #include <list> #include <vector> #include <map> #include <set> #include <string> #include <cstring> #include <cassert> #include <limits.h> using namespace std; typedef long long LL; typedef long double LD; typedef vector<int> VI; typedef pair<int,int> PII; #define REP(i,n) for(int i=0;i<(n);i++) #define FOR(i,a,b) for(VAR(i,a);i<=(b);++i) #define FORD(i,a,b) for(VAR(i,a);i>=(b);--i) #define FORE(a,b) for(VAR(a,(b).begin());a!=(b).end();++a) #define VAR(a,b) __typeof(b) a=(b) #define SIZE(a) ((int)((a).size())) #define ALL(x) (x).begin(),(x).end() #define CLR(x,a) memset(x,a,sizeof(x)) #define ZERO(x) memset(x,0,sizeof(x)) #define S(t,i) scanf("%" ## t, &i) #define SI(i) scanf("%d", &i) const int INF=INT_MAX; const int MAXN=3000+5; int n, w[MAXN], p[MAXN]; bool v[MAXN]; list<list<int>> cykle; int main() { ios_base::sync_with_stdio(0); SI(n); FOR(i, 1, n) { int wi; SI(wi); w[wi] = i; } int ni=0; FOR(i, 1, 3000) { if (w[i]) { //p[++ni] = w[i]; p[w[i]] = ++ni; } } int doZrobienia = 0; FOR(i, 1, n) { if (p[i] != i) { doZrobienia++; } // printf("%d ", p[i]); } // printf("\n"); list<list<int>> allStarts, allTails; int turns=0; while (doZrobienia>0) { turns++; FOR(i, 1, n) { v[i] = (p[i] == i); } list<int> tails; list<int> starts; FOR(i, 1, n) { if (!v[i] && !v[p[i]]) { v[i] = true; // printf("%d ", i); starts.push_back(i); tails.push_front(p[i]); v[p[i]] = true; swap(p[i], p[p[i]]); } } allStarts.push_back(starts); allTails.push_back(tails); // FORE(ti, tails) { // printf("%d ", *ti); // } // printf("\n"); doZrobienia=0; FOR(i, 1, n) { if (p[i] != i) { doZrobienia++; } // printf("%d ", p[i]); } // printf("\n"); } printf("%d\n", turns); list<list<int>>::iterator turni = allTails.begin(); FORE(starti, allStarts) { printf("%lu\n", 2*(*starti).size()); FORE(el, *starti) { printf("%d ", *el); } FORE(el, *turni) { printf("%d ", *el); } ++turni; printf("\n"); } // FOR(i, 1, n) { // printf("%d %d\n", i, p[i]); // } // return 0; // unsigned long int maxLength = 0; // FOR(i, 1, n) { // if (v[i]) continue; // // int pi = i; // list<int> li; // while (!v[pi]) { // v[pi] = true; // li.push_back(pi); // // pi = p[pi]; // } // if (li.size() > 1) { // cykle.push_back(li); // } // maxLength = max(maxLength, li.size()); // } // printf("%lu\n", maxLength-1); // REP(xyz, maxLength-1) { // printf("%lu\n", cykle.size()*2); // list<int> tails; // for (list<list<int>>::iterator cykl = cykle.begin(); cykl != cykle.end();) { // printf("%d ", (*cykl).front()); // list<int>::iterator nextElement = ++(*cykl).begin(); // tails.push_front(*nextElement); // (*cykl).erase(nextElement); // list<list<int>>::iterator poprzedniCykl = cykl++; // if ((*poprzedniCykl).size() < 2) { // cykle.erase(poprzedniCykl); // } // } // FORE(ti, tails) { // printf("%d ", *ti); // } // printf("\n"); // } return 0; } |