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
#include <iostream>
#include <math.h>
using namespace std;


int main()
{
    int n,w=1,w1,t;
    cin >>n>>t;

    for (int i=0;i<n;i++){w*=2;}
    w1=w;
    int *table = new int[w];
    for (int i=0;i<w;i++){
        cin>>table[i];
    }

    int polowa,pol1,pol2;
    polowa = w/2;
    int *table1 = new int[polowa];
    int *table2 = new int[polowa];
    pol1=polowa;
    pol2=polowa;
            //sk�adanie pierwszej i drugiej po�owy

    for (int i=0;i<polowa;i++){
        table1[i]=table[--pol1];
    }
    for (int i=0;i<polowa;i++){
        table2[i]=table[--w1];
    }

    if(t%2==0){
    for (int i=0;i<w;i++){
            cout<<table[i]<<" ";}
    }

    else{
    for (int i=0;i<polowa;i++){
            cout<<table2[i]<<" ";}
    for (int i=0;i<polowa;i++){
            cout<<table1[i]<<" ";}
    }

    return 0;
}