#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); int n; cin>>n; int t; cin>>t; int m = (1<<n); vector <int> v; v.resize(m); for(int i=0; i<m; ++i) cin>>v[i]; if(t%2 == 0) { for(int i=0; i<m; ++i) cout<<v[i]<<" "; } else { for(int i=m-1; i>=0; --i) cout<<v[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 | #include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); int n; cin>>n; int t; cin>>t; int m = (1<<n); vector <int> v; v.resize(m); for(int i=0; i<m; ++i) cin>>v[i]; if(t%2 == 0) { for(int i=0; i<m; ++i) cout<<v[i]<<" "; } else { for(int i=m-1; i>=0; --i) cout<<v[i]<<" "; } return 0; } |