Blackboard Fibonacci

Fibonacci numbers are the sequence of integers: f0 = 0, f1 = 1, f2 = 1, f3 = 2, f4 = 3, f5 = 5, …, fn = fn - 2 + fn - 1. So every next number is the sum of the previous two.

Bajtek has developed a nice way to compute Fibonacci numbers on a blackboard. First, he writes a 0. Then, below it, he writes a 1. Then he performs the following two operations:

operation “T”: replace the top number with the sum of both numbers;
operation “B”: replace the bottom number with the sum of both numbers.
If he performs n operations, starting with “T” and then choosing operations alternately (so that the sequence of operations looks like “TBTBTBTB…”), the last number written will be equal to fn + 1.

Unfortunately, Bajtek sometimes makes mistakes and repeats an operation two or more times in a row. For example, if Bajtek wanted to compute f7, then he would want to do n = 6 operations: “TBTBTB”. If he instead performs the sequence of operations “TTTBBT”, then he will have made 3 mistakes, and he will incorrectly compute that the seventh Fibonacci number is 10. The number of mistakes in the sequence of operations is the number of neighbouring equal operations («TT» or «BB»).

You are given the number n of operations that Bajtek has made in an attempt to compute fn + 1 and the number r that is the result of his computations (that is last written number). Find the minimum possible number of mistakes that Bajtek must have made and any possible sequence of n operations resulting in r with that number of mistakes.

Assume that Bajtek always correctly starts with operation “T”.

Input
The first line contains the integers n and r (1 ≤ n, r ≤ 106).

Output
The first line of the output should contain one number — the minimum possible number of mistakes made by Bajtek. The second line should contain n characters, starting with “T”, describing one possible sequence of operations with that number of mistakes. Each character must be either “T” or “B”.

If the required sequence doesn’t exist, output “IMPOSSIBLE” (without quotes).

Examples
Input
6 10
Output
2
TBBTTB
Input
4 5
Output
0
TBTB
Input
2 1
Output
IMPOSSIBLE
解题思路:最初的状态已知:0在上面,1在下面。末状态知道上下两个数有一个是m ,逆推求解
代码:

#include<iostream>
#include <cstring>
using namespace std;
const int inf=0x7f7f7f7f;
const int N=1000004;
int n,m,i,res;
char ans[N],temp[N];
void calc(int t,int b){
    int len=1,k;
    while(t!=b&&t>=1&&b>=1){
        if(t>b){
            temp[len++]='T';
             t-=b;
        }
        if(t<b){
            temp[len++]='B';
            b-=t;
        }
    }
    if(len!=n||t!=1)//不满足条件
        return ;
    temp[len]='T';
    k=0;
    for(int i=1;i<len;i++){
        if(temp[i]==temp[i+1])
            k++;
    }
    if(k<res){
        res=k;
        for(int i=0;i<len;i++)
            ans[i]=temp[len-i];
        ans[len]='\0';
    }
    return ;
}
int main(){
    cin>>n>>m;
    int i;
    res=inf;
    for(i=1;i<=m;i++){//逆推
        calc(i,m);
        calc(m,i);
    }
    if(res==inf)
        cout<<"IMPOSSIBLE"<<endl;
    else
        cout<<res<<endl<<ans;
    return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

轩辕青山

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

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

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

打赏作者

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

抵扣说明:

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

余额充值