#include<cstdio>
#include<cmath>
using namespace std;
const int MAX=1050000;
int tab[MAX];
int main()
{
int n,pn,t;
scanf("%d%d",&n,&t);
pn=2<<(n-1);
for(int i=0;i<pn;++i)
scanf("%d",&tab[i]);
if(t%2)
for(int i=pn-1;i>=0;--i)
printf("%d ",tab[i]);
else
for(int i=0;i<pn;++i)
printf("%d ",tab[i]);
printf("\n");
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 | #include<cstdio> #include<cmath> using namespace std; const int MAX=1050000; int tab[MAX]; int main() { int n,pn,t; scanf("%d%d",&n,&t); pn=2<<(n-1); for(int i=0;i<pn;++i) scanf("%d",&tab[i]); if(t%2) for(int i=pn-1;i>=0;--i) printf("%d ",tab[i]); else for(int i=0;i<pn;++i) printf("%d ",tab[i]); printf("\n"); return 0; } |
English