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