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
| #include<bits/stdc++.h> using namespace std;
bitset<2500> tree;
int main(){ ios::sync_with_stdio(false);cin.tie(0);
int iptNum; cin>>iptNum; while(iptNum--){ int d,n; tree.set(); cin>>d>>n;
int pos; for(int i=0;i<n;i++){ pos=1; for(int j=1;j<d;j++){ if(tree[pos]){ tree[pos]=false; pos*=2; }else{ tree[pos]=true; pos=pos*2+1; } } } cout<<pos<<"\n"; } return 0; }
|