移动 II | |||||
|
|||||
Description | |||||
在坐标轴[0,500]上存在两点A,B。 点A可以多次移动,每次移动需要遵循如下规则: 1.向后移动一步。 2.向前移动一步。 3.跳到当前坐标*2的位置上。 要求:利用宽搜算法编程求解从A移动到B的步数最少的方案,为使答案统一,要求搜索按照规则1、2、3的顺序进行。 |
|||||
Input | |||||
输入包含多组测试用例。 每组测试用例要求输入两个整数A,B。 |
|||||
Output | |||||
按要求输出步数最少的方案。 向后走输出"step back"。 向前走输出"step forward"。 跳跃输出"jump"。 对于每组结果需要追加一个空行。 |
|||||
Sample Input | |||||
5 17 5 18 3 499 |
|||||
Sample Output | |||||
step back jump jump step forward jump step back jump step forward jump jump jump step back jump jump step forward jump jump step back |
|||||
Source | |||||
2012 Spring Contest 4 - Search Technology | |||||
Author | |||||
卢俊达 http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1316 #include<stdio.h> |