博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces--TechnoCup--2016.10.15--ProblemA--Transformation: from A to B
阅读量:4879 次
发布时间:2019-06-11

本文共 2492 字,大约阅读时间需要 8 分钟。

Transformation: from A to B

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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

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

You need to help Vasily to transform the number a into the number b 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 a into b.

Input

The first line contains two positive integers a and b (1 ≤ a < b ≤ 109) — the number which Vasily has and the number he wants to have.

Output

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

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

  • x1 should be equal to a,
  • xk should be equal to b,
  • xi should be obtained from xi - 1 using any of two described operations (1 < i ≤ k).

If there are multiple answers, print any of them.

Examples
Input
2 162
Output
YES 5 2 4 8 81 162
Input
4 42
Output
NO
Input
100 40021
Output
YES5100 200 2001 4002 40021
看到这道题的第一眼,我想到的是用DFS搜索解决,当然搜索完全可以解决.但交上去就出问题了--空间不足--无论怎么优化空间复杂度都会爆栈 最后Lzy突然想到了规律:若某个数是奇数,必然是通过*10+1变来的,而如果某个数是偶数,一定是通过*2得来的. 这样,从b往前倒推,若能得到a,则说明可以,否则不行
#include
#include
#include
#include
#include
using namespace std;const int MAXN=10000000;unsigned int aa[MAXN];long long a,b;long long n;bool flag;int main(){ //freopen("data.in","r",stdin); while(cin>>a>>b) { flag=0; n=1; aa[1]=b; while(b>0) { if(b==a) { flag=1; break; } if(b%2) { n++; b=b-1; if(b%10) break; b=(b/10); aa[n]=b; } else { n++; b=b/2; aa[n]=b; } } if(flag) { cout<<"YES"<
=1; i--) { cout<
<<" "; } cout<

 

 

转载于:https://www.cnblogs.com/liuzhanshan/p/5966485.html

你可能感兴趣的文章
Period (KMP算法 最小循环节 最大重复次数)
查看>>
聊聊Iconfont
查看>>
sgu 103. Traffic Lights
查看>>
poj 3621 Sightseeing Cows
查看>>
hdu 3666 THE MATRIX PROBLEM
查看>>
TopCoder SRM 176 Deranged
查看>>
java 内存模型
查看>>
Javascript中数组与字典(即map)的使用
查看>>
C++不完整的类型
查看>>
memcached(十三)注意事项
查看>>
ITerms2在mac系统下的安装和配色,并和go2shell关联
查看>>
nginx常见面试题1
查看>>
小白用shiro(1)
查看>>
微服务化之无状态化与容器化
查看>>
动态规划LeetCode174地下城游戏
查看>>
(十二)文件处理基础
查看>>
ubuntu 下更改分辨率
查看>>
Java 并发专题 : Semaphore 实现 互斥 与 连接池
查看>>
null值经过强转会怎样?
查看>>
Sharepoint学习笔记—Debug&TroubleShooting--Developer Dashboard的使用(3.向Assert and Critical Events段插入信息)...
查看>>