#include <cstdio> #include <vector> #include <cmath> #include <algorithm> using namespace std; vector<int> v; int main() { int n, t; scanf("%d %d", &n, &t); v.resize(pow(2, n)); for(auto& el : v) scanf("%d", &el); auto l = [](const int& x) { printf("%d ", x); }; if(t % 2 == 1) for_each(v.rbegin(), v.rend(), l); else for_each(v.begin(), v.end(), l); 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 24 25 26 27 28 29 | #include <cstdio> #include <vector> #include <cmath> #include <algorithm> using namespace std; vector<int> v; int main() { int n, t; scanf("%d %d", &n, &t); v.resize(pow(2, n)); for(auto& el : v) scanf("%d", &el); auto l = [](const int& x) { printf("%d ", x); }; if(t % 2 == 1) for_each(v.rbegin(), v.rend(), l); else for_each(v.begin(), v.end(), l); printf("\n"); return 0; } |