UVa11089 - Fi-binary Number

I I U P C 2 0 06

Problem F: Fi-binary Number

Input: standard input

Output: standard output

 

A Fi-binary number is a number that contains only 0 and 1. It does not contain any leading 0. And also it does not contain 2 consecutive 1. The first few such number are 1, 10, 100, 101, 1000, 1001, 1010, 10000, 10001, 10010, 10100, 10101 and so on. You are given n. You have to calculate the n’th Fi-Binary number.

 

Input

The first line of the input contains one integer T the number of test cases. Each test case contains one integer n.

 

Output

For each test case output one line containing the n’th Fi-Binary number.

 

Constraints

-           1 ≤ N ≤ 109

 

Sample Input

Output for Sample Input

4
10
20
30
40

10010
101010
1010001
10001001


#include <cstdio>

using namespace std;

const int N = 50;

long long f[N];

void solve(long long x);
void init();

int main()
{
	#ifndef ONLINE_JUDGE
		freopen("d:\\OJ\\uva_in.txt", "r", stdin);
	#endif
	
	init();
	
	int t;
	scanf("%d", &t);
	while (t--) {
		long long n;
		scanf("%lld", &n);
		solve(n);
	}
	return 0;
}

void init()
{
	f[0] = f[1] = 1;
	for (int i = 2; i < N; i++) {
		f[i] = f[i - 2] + f[i - 1];
	}
}

void solve(long long x)
{
	x--;
	int n;
	for (n = 0; f[n] <= x; n++) x -= f[n];
	
	printf("1");
	while (n > 1) {
		if (x < f[n - 1]) {
			printf("0");
			n--;
		} else {
			printf("01");
			x -= f[n - 1];
			n -= 2;
		}
	}
	
	printf("%s\n", n ? "0" : "");
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

kgduu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值