#include <cstdio> #include <vector> #include <cmath> using namespace std; int main() { int n, t, tmp; vector<int> v; scanf("%d %d", &n, &t); int size=pow(2, n); for(int i=0; i<size; i++) { scanf("%d", &tmp); v.push_back(tmp); } if(t%2==0) for(int i=0; i<v.size(); i++) printf("%d%s", v[i], i==v.size()-1?"":" "); else for(int i=v.size()-1; i>=0; i--) printf("%d%s", v[i], i==0?"":" "); 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 | #include <cstdio> #include <vector> #include <cmath> using namespace std; int main() { int n, t, tmp; vector<int> v; scanf("%d %d", &n, &t); int size=pow(2, n); for(int i=0; i<size; i++) { scanf("%d", &tmp); v.push_back(tmp); } if(t%2==0) for(int i=0; i<v.size(); i++) printf("%d%s", v[i], i==v.size()-1?"":" "); else for(int i=v.size()-1; i>=0; i--) printf("%d%s", v[i], i==0?"":" "); return 0; } |