Below is the code that I have copied from link http://progspedia.blogspot.com/2011/05/679-dropping-balls.html#comment-form
#include<stdio.h>
int main()
{
int t,D,I,P,i,j;
//freopen("in.txt","r",stdin);
while(scanf("%d",&t)==1&&t>0)
{
for(i=0;i<t;i++)
{
scanf("%d%d",&D,&I);
P=1;D--;
for (j=0;j<D;j++)
{
P= I&1 ? (P<<1) : (P<<1)+1;
I=(I+1)>>1;
}
printf("%d\n",P);
}
}
return 0;
}
The code runs perfectly but I don't understand how this code keeps tracks of the thing that which sub tree we have to go after level 1. If someone helps me in that that would be very helpful for me.
Link to the problem is http://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=620