In a bizarre game of chess ,knight was so drunk, that instead of his usual move he started walking straight. In every move Knight jumps on 2n steps forward (n is number of block that he had travelled so far from starting) but after that he has to take either 1 step forward or backward.
Now the Knight needs to get to position X so King (i.e. You) needs to decide the order of his backward or forward step in such a way that he can reach its destination in minimum number of steps. Remember he always travels in a straight line and the length of the board is infinite.
Input
The first line of the input contains an integer T denoting the number of test cases, for each test case enter value X ( i.e. destination)
Note : initially knight is at n = 1.
Output
For each test case the output should be string of numbers 1 & 2 where 1 denotes backward step and 2 denote the forward step
Note : for no solution print 0.
Constraints
1 ≤ T ≤ 100
1 ≤ X ≤ 10^10
Example
Input:
2
17
10
Output:
2111
0
Explanation
Case 1 : starting from n = 1 , knight moves to n = 3 ('2') , 5 ('1') , 9 ('1') , 17 ('1') i.e. string printed is 2 1 1 1
Case 2 : no solution is possible
SOLUTION--
#include
int main()
{
int t,i,len;
long long int num;
scanf("%d",&t);
while(t--)
{
scanf("%lld",&num);
char str[40];
i=0;
//num=num-1;
if(num%2==0)
printf("0\n");
else{
while(num>0)
{
if(num%2==0)
str[i]='1';
else
str[i]='2';
i++;
num=num/2;
}
len=i-1;
for(i=len;i>0;i--)
printf("%c",str[i]);
printf("\n");
}
}
return 0;
}
No comments:
Post a Comment