这道题我做的有点晕,虽然第一次提交是Compile Error,但改掉了与std中同名的函数再Submit了一下就AC了。
但是这道题我做的不好,整体的程序结构还算清晰,与上一题1004也很像,当然比较而言在这道里:回溯更加复杂一些,多了几个其他干别的的函数,plus还有一个自己设计的类。
但是在solve();函数里,对于每项动作的判断太复杂了,一眼根本看不出来,要不是VC里有watch可看,就是逻辑判断写错也很难检查出来。我总感觉有一个更加简洁明了的方法在不远处存在,我一直在向它致意,可惜它不理我。。。
总得过程还是很清楚的,就不多写了有一点需要交待的是:我用了一个step[]数组来记录动作,因为可能的动作一共有6种,于是我把step[]的类型定为int,具体指带看下void PrintStep(int target[],int tp)里的switch就一清二楚了。另外利用rstep[]来存储最短成功步骤,最后输出
总结:1.拿到题后思路清晰,这种看似纷繁的题目最适合用回溯不断试探。
2.不足是判断逻辑过于复杂,稍有不细心就会产生大错,添加的逻辑判断我基本都是设了断点然后一步一步跟踪才检查出来的。
Total Submit: 2058 Accepted Submit: 960 In the movie "Die Hard 3", Bruce Willis and Samuel L. Jackson were confronted with the following puzzle. They were given a 3-gallon jug and a 5-gallon jug and were asked to fill the 5-gallon jug with exactly 4 gallons. This problem generalizes that puzzle. You have two jugs, A and B, and an infinite supply of water. There are three types of actions that you can use: (1) you can fill a jug, (2) you can empty a jug, and (3) you can pour from one jug to the other. Pouring from one jug to the other stops when the first jug is empty or the second jug is full, whichever comes first. For example, if A has 5 gallons and B has 6 gallons and a capacity of 8, then pouring from A to B leaves B full and 3 gallons in A. A problem is given by a triple (Ca,Cb,N), where Ca and Cb are the capacities of the jugs A and B, respectively, and N is the goal. A solution is a sequence of steps that leaves exactly N gallons in jug B. The possible steps are fill A where "pour A B" means "pour the contents of jug A into jug B", and "success" means that the goal has been accomplished. You may assume that the input you are given does have a solution. Input Input to your program consists of a series of input lines each defining one puzzle. Input for each puzzle is a single line of three positive integers: Ca, Cb, and N. Ca and Cb are the capacities of jugs A and B, and N is the goal. You can assume 0 < Ca <= Cb and N <= Cb <=1000 and that A and B are relatively prime to one another. Output Output from your program will consist of a series of instructions from the list of the potential output lines which will result in either of the jugs containing exactly N gallons of water. The last line of output for each puzzle should be the line "success". Output lines start in column 1 and there should be no empty lines nor any trailing spaces.
Sample Input3 5 4 5 7 3 Sample Outputfill B pour B A empty A pour B A fill B pour B A success fill A pour A B fill A pour A B empty B pour A B successProblem Source: Zhejiang University Local Contest 2001 |
|
本文解析了一道源自电影《虎胆龙威3》的数学谜题,即如何使用3加仑和5加仑的水壶准确测量出4加仑的水。通过使用回溯算法,作者详细介绍了实现这一目标的具体步骤和代码实现。

938

被折叠的 条评论
为什么被折叠?



