#include <iostream> #include <vector> using namespace std; int main() { int t = 0; int n = 0; int x = 0; std::cin >> n >> t; vector<int> cards; if ((t % 2) == 0) { for (int i = 0; i < (1 <<n); ++i) { std::cin >> x; std::cout << x; } } else { cards.reserve(1 << n); for (int i = 0; i < (1 << n); ++i) { std::cin >> x; cards.push_back(x); } for (int i = 0; i < (1 << n); ++i) { std::cout << cards.back() << ' '; cards.pop_back(); } } 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 | #include <iostream> #include <vector> using namespace std; int main() { int t = 0; int n = 0; int x = 0; std::cin >> n >> t; vector<int> cards; if ((t % 2) == 0) { for (int i = 0; i < (1 <<n); ++i) { std::cin >> x; std::cout << x; } } else { cards.reserve(1 << n); for (int i = 0; i < (1 << n); ++i) { std::cin >> x; cards.push_back(x); } for (int i = 0; i < (1 << n); ++i) { std::cout << cards.back() << ' '; cards.pop_back(); } } return 0; } |