Blackboard Fibonacci(CF-217B)

Problem Description

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,现在给出 n、r 两个数,要求对两行数经过 n 次操作后得到 r 这个数,操作分为两类:

  • T:代表将第二行的数加到第一行,本次得到的数是第一行的新数
  • B:代表将第一行的数加到第二行,本次得到的数是第二行的新数

现在要求给出的序列中出现错误的次数最小,输出错误次数与操作序列,如果经过 n 次操作后达不到 r,输出 IMPOSIBLE

思路:

题目本质是对上下两行数进行操作,得到斐波那契数列的一项

假设第一行的数为 t,第二行的数为 b,根据所给的两个操作,有:

  • 若当前执行的操作为 T,那么 t=t+b 且 t>b
  • 若当前执行的操作为 B,那么 b=b+t 且 b>t

可以看到,两个操作的状态是唯一的,那么也就是说:

  • 若当前状态为 t>b,则是执行操作 T 得来的
  • 若当前状态为 b>t,则是执行操作 B 得来的

因此可以采用逆推的方式来得到这个操作序列,总情况只有 2*r 种,即:枚举 i,每次通过 (i,r) 与 (r,i) 来进行推导,更新出错的最小值即可

Source Program

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<bitset>
#define EPS 1e-9
#define PI acos(-1.0)
#define INF 0x3f3f3f3f
#define LL long long
const int MOD = 1E9+7;
const int N = 1000000+5;
const int dx[] = {-1,1,0,0,-1,-1,1,1};
const int dy[] = {0,0,-1,1,-1,1,-1,1};
using namespace std;
int n,r;
char str[N];
char res[N];
int error=INF;
int tot,cnt;
int cal(int t,int b){
    cnt=0;
    while(t>=0&&b>=0&&t!=b){//逆推
        if(b>t){
            str[cnt++]='B';
            b-=t;
        }
        else{
            str[cnt++]='T';
            t-=b;
        }
    }
    str[cnt]='T';//首字母为T

    if(t!=1||cnt!=n-1)
        return INF;

    int minn=0;
    for(int i=0;i<cnt;i++)
        if(str[i]==str[i+1])
            minn++;

    return minn;
}
int main() {
    scanf("%d%d",&n,&r);

    int error=INF;
    for(int i=1;i<=r;i++){
        int minn=cal(i,r);
        if(minn<error){
            error=minn;
            tot=cnt;
            for(int i=0;i<=cnt;i++)
                res[i]=str[i];
        }

        minn=cal(r,i);
        if(minn<error){
            error=minn;
            tot=cnt;
            for(int i=0;i<=cnt;i++)
                res[i]=str[i];
        }
    }

    if(error==INF)
        printf("IMPOSSIBLE\n");
    else{
        printf("%d\n",error);
        for(int i=tot;i>=0;i--)
            printf("%c",res[i]);
        printf("\n");
    }

    return 0;
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值