Pots POJ - 3414(bfs)
You are given two pots, having the volume of A and B liters respectively. The following operations can be performed:
FILL(i) fill the pot i (1 ≤ i ≤ 2) from the tap;
DROP(i) empty the pot i to the drain;
POUR(i,j) pour from pot i to pot j; after this operation either the pot j is full (and there may be some water left in the pot i), or the pot i is empty (and all its contents have been moved to the pot j).
Write a program to find the shortest possible sequence of these operations that will yield exactly C liters of water in one of the pots.
Input
On the first and only line are the numbers A, B, and C. These are all integers in the range from 1 to 100 and C≤max(A,B).
Output
The first line of the output must contain the length of the sequence of operations K. The following K lines must each describe one operation. If there are several sequences of minimal length, output any one of them. If the desired result can’t be achieved, the first and only line of the file must contain the word ‘impossible’.
Sample Input
3 5 4
Sample Output
6
FILL(2)
POUR(2,1)
DROP(1)
POUR(2,1)
FILL(2)
POUR(2,1)
雖然不能打acm了,但是還是要補一下之前的坑。
直接按著狀態廣搜,標記這個狀態出沒出現過,出現過就不要向下擴展了。沒出現就向下擴展。
代碼如下:
喜歡算法,不一定非要打比賽,當個樂趣消遣消遣也是不錯的。
努力加油a啊,(o)/~
總結
以上是生活随笔為你收集整理的Pots POJ - 3414(bfs)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Problem F. Grab The
- 下一篇: codeforces(牛客网dp专题,排