#include<bits/stdc++.h> using namespace std; int tab[2000100]; int main(){ int n,t; scanf("%d%d",&n,&t); int pot=1<<n; for(int i=0;i<pot;i++){ scanf("%d",&tab[i]); } if(t%2==0){ for(int i=0;i<pot;i++){ printf("%d ",tab[i]); } } else{ for(int i=pot-1;i>=0;i--){ printf("%d ",tab[i]); } } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #include<bits/stdc++.h> using namespace std; int tab[2000100]; int main(){ int n,t; scanf("%d%d",&n,&t); int pot=1<<n; for(int i=0;i<pot;i++){ scanf("%d",&tab[i]); } if(t%2==0){ for(int i=0;i<pot;i++){ printf("%d ",tab[i]); } } else{ for(int i=pot-1;i>=0;i--){ printf("%d ",tab[i]); } } } |