/* --------------------------> BISMILLAHIR RAHMANIR RAHIM <------------------------------ */
/* ------------------------> Tafhim Ul Islam [ CSE-09@IIUC ] <--------------------------- */
#include <cstdio>
#include <iostream>
#include <cmath>
#include <cstring>
#include <string>
#include <map>
#include <stack>
#include <queue>
#include <cstdlib>
#include <vector>
#include <climits>
#include <set>
#define MI INT_MAX
#define ULONG unsigned long long
#define LLONG long long
#define swap(a,b) {int t=a ; a=b ; b=t; }
#define sz(a) sizeof(a)
#define FOR(i, a, b) for (i=a ; i<b ; i++)
#define QSORT(a,n,s,f) qsort(a,n,sizeof(s),f)
using namespace std;
int print[10000];
int convert(int n)
{
int b=0, i=0;
if ((n%2)==0)
{
b=0;
} else {
b=1;
}
//cout << b ;
print[i++]=b;
while (n)
{
n-=b;
n/=(-2);
if ((n%2)==0)
{
b=0;
} else
{
b=1;
}
//cout << b;
print[i++]=b;
}
//cout << endl;
return i;
}
int main()
{
int n, i, kase=1, test;
scanf("%d",&test);
while (test--)
{
scanf("%d",&n);
if (n==0)
{
printf("Case #%d: 0\n",kase++);
continue;
}
printf("Case #%d: ",kase++);
i = convert(n)-2;
for ( ; i>=0 ; i--)
{
printf("%d",print[i]);
}
printf("\n");
}
return 0;
}
Sunday, August 28, 2011
[UVa] 11121 - Base -2
Subscribe to:
Post Comments (Atom)
Connect Rapoo MT750S with Linux (Tested on Manjaro)
I bought this obvious copy of MX Master 2S in hopes of having the device switching functionality along with a lightweight body because I ha...
-
I like coding a lot, keeps me glued to the PC for hours. For that reason it's a need to edit the Syntax Highlighter to suit my eyes for...
-
I bought this obvious copy of MX Master 2S in hopes of having the device switching functionality along with a lightweight body because I ha...
-
Method: The problem at first glance seems too straightforward but it's not that much. Think a bit about the lines "Erin can add ...
No comments:
Post a Comment
Post your comment here. If you want to say something about programming problems, scripts, software etc, please try to be as descriptive as possible.