#include <iostream> #include <stdio.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int pow(int x){ int res = 1; for(int i=0;i<x;i++){ res*=2; } return res; } int tab[2000000]; int main() { int n=0; int t=0; scanf("%d%d",&n,&t); n=pow(n); for(int i=0;i<n;i++){ scanf("%d",&tab[i]); } if(t%2==0){ for(int i=0;i<n;i++){ printf("%d ",tab[i]); } }else{ for(int i=n-1;i>=0;i--){ printf("%d ",tab[i]); } } 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #include <iostream> #include <stdio.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int pow(int x){ int res = 1; for(int i=0;i<x;i++){ res*=2; } return res; } int tab[2000000]; int main() { int n=0; int t=0; scanf("%d%d",&n,&t); n=pow(n); for(int i=0;i<n;i++){ scanf("%d",&tab[i]); } if(t%2==0){ for(int i=0;i<n;i++){ printf("%d ",tab[i]); } }else{ for(int i=n-1;i>=0;i--){ printf("%d ",tab[i]); } } return 0; } |