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

vector<int> A;
int t;

void tasowanie(int x, int y, int q)
{
    if(q>t)
        return;
    q++;
    tasowanie(x, (y+x)/2, q);
    tasowanie((y+x)/2+1, y, q);
    vector<int> B;
    B.resize((y-x+1)/2);
    for(int i=0; i<B.size(); i++)
        B[i]=A[x+i];
    for(int i=0; i<B.size(); i++)
        A[x+i]=A[(y+x)/2+1+i];
    for(int i=0; i<B.size(); i++)
        A[(y+x)/2+1+i]=B[i];
}

int main()
{
    int n, p=1;
    scanf("%d %d", &n, &t);
    for(int i=0; i<n; i++)
        p=p*2;
    A.resize(p);
    for(int i=0; i<p; i++)
        scanf("%d", &A[i]);
    tasowanie(0, p-1, 0);
    for(int i=0; i<p; i++)
        printf("%d ", A[i]);
    printf("\n");
}