#include <iostream> using namespace std; int tab[1100000]; int main() { ios::sync_with_stdio(false); int n,t; cin >> n >> t; n = 1<<n; for(int k=0;k<n;k++) cin >> tab[k]; if(t%2==0) { for(int i=0;i<n;i++) cout << tab[i] << " "; } else{ for(int j=n-1;j>=0;j--) cout << tab[j] << " "; } 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 | #include <iostream> using namespace std; int tab[1100000]; int main() { ios::sync_with_stdio(false); int n,t; cin >> n >> t; n = 1<<n; for(int k=0;k<n;k++) cin >> tab[k]; if(t%2==0) { for(int i=0;i<n;i++) cout << tab[i] << " "; } else{ for(int j=n-1;j>=0;j--) cout << tab[j] << " "; } return 0; } |