#include <iostream> using namespace std; const int NN = 1048576 + 7; int n, t, p, a, tab[NN]; void wypisz(int i, int j) { // cout << "wypisz " << i << ", " << j << '\n'; if (j == i + 2) { cout << tab[i+1] << " " << tab[i] << " "; } else { int r = (j - i)/2; wypisz(i + r, j); wypisz(i, i + r); } return; } int main() { ios_base::sync_with_stdio(0); cin >> n >> t; p = 1; for (int i = 0; i < n; i++) p = 2 * p; if (2 * (t/2) == t) { for (int i = 0; i < p; i++) { cin >> a; cout << a << " "; } } else { for (int i = 0; i < p; i++) cin >> tab[i]; wypisz(0, p); } 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #include <iostream> using namespace std; const int NN = 1048576 + 7; int n, t, p, a, tab[NN]; void wypisz(int i, int j) { // cout << "wypisz " << i << ", " << j << '\n'; if (j == i + 2) { cout << tab[i+1] << " " << tab[i] << " "; } else { int r = (j - i)/2; wypisz(i + r, j); wypisz(i, i + r); } return; } int main() { ios_base::sync_with_stdio(0); cin >> n >> t; p = 1; for (int i = 0; i < n; i++) p = 2 * p; if (2 * (t/2) == t) { for (int i = 0; i < p; i++) { cin >> a; cout << a << " "; } } else { for (int i = 0; i < p; i++) cin >> tab[i]; wypisz(0, p); } return 0; } |