#include <bits/stdc++.h> using namespace std; long long potega, tab[1000111], tasowania, ilosctasowan; int main() { scanf("%d%d",&potega,&tasowania); ilosctasowan = pow (2.0, potega); for (int i = 0; i<ilosctasowan; i++) { scanf("%d",&tab[i]); } if (tasowania%2==0) { for (int i = 0; i<ilosctasowan; i++) { printf("%d ",tab[i]); } } else { for (int i = ilosctasowan-1; i>=0; i--) { printf("%d ",tab[i]); } } 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 | #include <bits/stdc++.h> using namespace std; long long potega, tab[1000111], tasowania, ilosctasowan; int main() { scanf("%d%d",&potega,&tasowania); ilosctasowan = pow (2.0, potega); for (int i = 0; i<ilosctasowan; i++) { scanf("%d",&tab[i]); } if (tasowania%2==0) { for (int i = 0; i<ilosctasowan; i++) { printf("%d ",tab[i]); } } else { for (int i = ilosctasowan-1; i>=0; i--) { printf("%d ",tab[i]); } } return 0; } |