#include <iostream> using namespace std; const int MAX_N = 20; const int MAX_SIZE = (1<<MAX_N)+1; int arr[MAX_SIZE]; int n,t,temp,i; int main() { ios_base::sync_with_stdio(0); cin>>n>>t; n=(1<<n); if(t&1) // nieparzysta liczba tasowan { for(i=0;i<n;++i) cin>>arr[i]; while(i) cout<<arr[--i]<<" "; } else // parzysta liczba tasowan { for(i=0;i<n;++i) { cin>>temp; cout<<temp<<" "; } } 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 | #include <iostream> using namespace std; const int MAX_N = 20; const int MAX_SIZE = (1<<MAX_N)+1; int arr[MAX_SIZE]; int n,t,temp,i; int main() { ios_base::sync_with_stdio(0); cin>>n>>t; n=(1<<n); if(t&1) // nieparzysta liczba tasowan { for(i=0;i<n;++i) cin>>arr[i]; while(i) cout<<arr[--i]<<" "; } else // parzysta liczba tasowan { for(i=0;i<n;++i) { cin>>temp; cout<<temp<<" "; } } return 0; } |