Hanoi Tower: 经典的BFS(宽度广度优先搜索)再演绎

TopCoder SRM 446 1000-Point Problem - HanoiTower

Problem Statement

    

In this problem we consider a modification of the classical Hanoi Towers game. The rules of our modification are as follows:

  • There are three pegs: peg A, peg B and peg C.
  • Each peg initially contains zero or more discs.
  • All discs have the same size and there are three types of discs: type A, type B and type C.
  • In one move you can move a disc from the top of one peg onto the top of another peg.
  • Your goal is to have all discs of type A on peg A, all discs of type B on peg B and all discs of type C on peg C.
  • You must achieve your goal in the minimum possible number of moves.

The initial locations of the discs are given in the strings pegA, pegB and pegC. Each character of pegA represents a disc located on peg A, where 'A' represents a disc of type A, 'B' represents a disc of type B and 'C' represents a disc of type C. The discs are given in order, from bottom to top. pegB and pegC describe the discs on pegs B and C, respectively, in the same format.

Return the minimum number of moves required to achieve the goal of the game.

Definition

    
Class:HanoiTower
Method:moves
Parameters:string, string, string
Returns:int
Method signature:int moves(string pegA, string pegB, string pegC)
(be sure your method is public)
    
 

Notes

-It's always possible to achieve the goal of the game.

Constraints

-pegA, pegB and pegC will contain only the characters 'A', 'B' and 'C'.
-The total number of characters in pegA, pegB and pegC will be between 1 and 10, inclusive.

Examples

0) 
    
"A"
"AA"
"AA"
Returns: 4
Move all discs of type A to peg A directly.
1) 
    
"B"
"C"
"A"
Returns: 5
There is exactly one disc of each type in this example, so we will refer to each disc by its type. The following sequence of moves is the shortest:
1. Move disc A to peg A.
2. Move disc C to peg C.
3. Move disc A to peg C.
4. Move disc B to peg B.
5. Move disc A to peg A.
2) 
    
"CBA"
""
""
Returns: 5
Again, there is exactly one disc of each type here, so we will refer to each disc by its type. The following sequence of moves is the shortest:
1. Move disc A to peg C.
2. Move disc B to peg B.
3. Move disc A to peg B.
4. Move disc C to peg C.
5. Move disc A to peg A.
3) 
    
"BBBBBBBBBA"
""
""
Returns: 11
Move the disc of type A to peg C. Then move all discs of type B to peg B. Finally, move disc A back to peg A.
4) 
    
"CBACBACBAA"
""
""
Returns: 19
 

This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2003, TopCoder, Inc. All rights reserved.

 

 

汉诺塔问题,是一个经典的递归算法案例。这道题继承了汉诺塔的特点,同时特殊的修改使其比普通的汉诺塔问题更具有挑战性。递归问题大多可用动态规划结合BFS(广度优先搜索,又称宽度优先搜索)的算法,这道题也一样,解答步骤为:

1、对于每一个状态(pegA, pegB, pegC),由于要寻找其解,放入当前步骤(搜索层)问题表(队列堆栈皆可)。最开始初始化时表中只有一个元素,即最初状态。(这里看到有些选手采用优先级队列,那样的话STL底层维护起来很麻烦,其实只要用BFS就没有必要用优先级队列)

2、维护一个搜索集set。对于状态(pegA, pegB, pegC),如果已在搜索中,则该分支陷入重复,放弃该分支搜索;否则加入搜索集。(一般set无需判断,直接insert即可)

3、遍历当前问题表求解。如果有某一状态满足终止条件,那么当前步骤数即为所求,返回;如果没有,则展开得到更深层次的问题表,步骤数++。返回步骤1。

注意:建议对“状态(pegA, pegB, pegC)”进行优化,最好将其计算为一个数字。如本题可以采用一个“三进制数”表达一个peg。看到有些选手直接用string[3]来代表这个状态,复杂度比较高,不过TC系统测试也能通过。

由于比赛完已经很晚了,稍微描述了一下思路,希望能对感兴趣的朋友一些参考和帮助。也欢迎你们留言发表自己的看法。

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值