#include <bits/stdc++.h> using namespace std; #define int long long #define ll long long #define pb push_back #define nd second #define st first #define sz size #define forr(i, n) for(int i=1;i<=n;i++) const ll infl=1e18+90; const int inf=1e9+90; const int roz=4000; int tab[roz], odw[roz]; vector<pair<int,int> > wek; vector<int> c; deque<int> kol; void cykl(int a, int o) { c.pb(a); odw[a]=1; if(tab[a]!=o) cykl(tab[a], o); } signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin>>n; for(int i=1; i<=n; i++) { cin>>tab[i]; wek.pb({tab[i], i}); } sort(wek.begin(), wek.end()); int licz=1; for(auto it:wek) { tab[it.nd]=licz; licz++; } /* for(int i=1;i<=n;i++) { cerr<<tab[i]<<" "; } cerr<<"\n"; */ int zap=0, zap2=0; for(int i=1;i<=n;i++) { if(odw[i]==0) { c.clear(); cykl(i, i); int d=c.size(); if(d==1) continue; if(d==2) { kol.pb(c[1]); kol.push_front(c[0]); swap(tab[c[0]], tab[c[1]]); zap=1; } else { kol.pb(c[0]); kol.push_front(c[1]); swap(tab[c[0]], tab[c[1]]); for(int i=2;i<=d/2;i++) { kol.pb(c[i]); kol.push_front(c[d-i+1]); swap(tab[c[i]], tab[c[d-i+1]] ); } zap2=1; } for(auto it:c) odw[it]=1; } } if(zap2==1) { cout<<2<<"\n"; cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; /* for(int i=1;i<=n;i++) { cerr<<tab[i]<<" "; } cerr<<"\n"; */ for(int i=1;i<=n;i++) { odw[i]=0; } for(int i=1;i<=n;i++) { c.clear(); if(odw[i]==0) cykl(i, i); if(c.size()<=1) continue; kol.pb(c[1]); kol.push_front(c[0]); } cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; } else if(zap==1) { cout<<1<<"\n"; cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; } else { cout<<0<<"\n"; } }
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 | #include <bits/stdc++.h> using namespace std; #define int long long #define ll long long #define pb push_back #define nd second #define st first #define sz size #define forr(i, n) for(int i=1;i<=n;i++) const ll infl=1e18+90; const int inf=1e9+90; const int roz=4000; int tab[roz], odw[roz]; vector<pair<int,int> > wek; vector<int> c; deque<int> kol; void cykl(int a, int o) { c.pb(a); odw[a]=1; if(tab[a]!=o) cykl(tab[a], o); } signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin>>n; for(int i=1; i<=n; i++) { cin>>tab[i]; wek.pb({tab[i], i}); } sort(wek.begin(), wek.end()); int licz=1; for(auto it:wek) { tab[it.nd]=licz; licz++; } /* for(int i=1;i<=n;i++) { cerr<<tab[i]<<" "; } cerr<<"\n"; */ int zap=0, zap2=0; for(int i=1;i<=n;i++) { if(odw[i]==0) { c.clear(); cykl(i, i); int d=c.size(); if(d==1) continue; if(d==2) { kol.pb(c[1]); kol.push_front(c[0]); swap(tab[c[0]], tab[c[1]]); zap=1; } else { kol.pb(c[0]); kol.push_front(c[1]); swap(tab[c[0]], tab[c[1]]); for(int i=2;i<=d/2;i++) { kol.pb(c[i]); kol.push_front(c[d-i+1]); swap(tab[c[i]], tab[c[d-i+1]] ); } zap2=1; } for(auto it:c) odw[it]=1; } } if(zap2==1) { cout<<2<<"\n"; cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; /* for(int i=1;i<=n;i++) { cerr<<tab[i]<<" "; } cerr<<"\n"; */ for(int i=1;i<=n;i++) { odw[i]=0; } for(int i=1;i<=n;i++) { c.clear(); if(odw[i]==0) cykl(i, i); if(c.size()<=1) continue; kol.pb(c[1]); kol.push_front(c[0]); } cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; } else if(zap==1) { cout<<1<<"\n"; cout<<kol.size()<<"\n"; while(!kol.empty()) { cout<<kol.front()<<" "; kol.pop_front(); } cout<<"\n"; } else { cout<<0<<"\n"; } } |