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
49
50
51
52
53
#include <iostream>
#include<cstdio>
#include<cmath>
using namespace std;

int main() {
  int n, t;
  
  scanf("%d %d",&n, &t);
  int n2 = pow(2, n);
  
  if (n == 1){
	// jesli tylko dwie karty
	int a, b;
	scanf("%d %d", &a, &b);
	
	if ((t % 2) == 0){
		cout << a << " " << b << "\n";
	}
	else{
		cout << b << " " << a << "\n";
	}
  }
  else{
	// jesli wiecej kart
	int k;
	if ((t % 2) == 0){
		for(int i = 0; i < n2; i++){
			scanf("%d", &k);
			cout << k << " ";
		}
	}
	else{
		// trzeba otwierac sterte
		int * array;
		array = new int [n2];
		
		for(int i = 0; i < n2; i++){
			scanf("%d", &k);
			array[i] = k;
		}
		
		for(int i = n2-1; i >= 0; i--){
			cout << array[i] << " ";
		}
		
		delete[] array;
	}
  
  }
  
  return 0;
}