#include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <vector> using namespace std; int n,pown, maxt, wsk, x, t, pol, pocz; int tab[1000005]; void czytaj(int &liczba) { char c = 0; liczba = 0; while(c < 33) c = getchar_unlocked(); do { liczba = (liczba << 1) + (liczba << 3) + c - '0'; c = getchar_unlocked(); } while(c > 33); } int main() { czytaj(n); czytaj(t); pown=pow(2, n); pol=0.5*pown; for (int i=1; i<=pown; i++) { czytaj(tab[i]); } if (t%2==0) { for (int i=1; i<=pown; i++) { printf("%d ", tab[i]); } } if (t%2==1) for (int i=pown; i>=1; i--) printf("%d ", tab[i]); }
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 | #include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <vector> using namespace std; int n,pown, maxt, wsk, x, t, pol, pocz; int tab[1000005]; void czytaj(int &liczba) { char c = 0; liczba = 0; while(c < 33) c = getchar_unlocked(); do { liczba = (liczba << 1) + (liczba << 3) + c - '0'; c = getchar_unlocked(); } while(c > 33); } int main() { czytaj(n); czytaj(t); pown=pow(2, n); pol=0.5*pown; for (int i=1; i<=pown; i++) { czytaj(tab[i]); } if (t%2==0) { for (int i=1; i<=pown; i++) { printf("%d ", tab[i]); } } if (t%2==1) for (int i=pown; i>=1; i--) printf("%d ", tab[i]); } |