CF727A.Transformation: from A to B

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasily has a number aa , which he wants to turn into a number bb . For this purpose, he can do two types of operations:

  • multiply the current number by 22 (that is, replace the number xx by 2x2·x );
  • append the digit 11 to the right of current number (that is, replace the number xx by 10x+110·x+1 ).

You need to help Vasily to transform the number aa into the number bb using only the operations described above, or find that it is impossible.

Note that in this task you are not required to minimize the number of operations. It suffices to find any way to transform aa into bb .

输入格式

The first line contains two positive integers aa and bb ( 1<=a<b<=10^{9} ) — the number which Vasily has and the number he wants to have.

输出格式

If there is no way to get bb from aa , print "NO" (without quotes).

Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer kk — the length of the transformation sequence. On the third line print the sequence of transformations x1,x2,...,xkx_{1},x_{2},...,x_{k} , where:

  • x1x_{1} should be equal to aa ,
  • xkx_{k} should be equal to bb ,
  • xix_{i} should be obtained from xi1x_{i-1} using any of two described operations ( 1<i<=k ).

If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    2 162
    

    输出#1

    YES
    5
    2 4 8 81 162 
    
  • 输入#2

    4 42
    

    输出#2

    NO
    
  • 输入#3

    100 40021
    

    输出#3

    YES
    5
    100 200 2001 4002 40021 
    
首页