POJ 3414 Pots (BFS + 记录路径)
传送门:Pots
人一我百!人十我万!永不放弃~~~怀着自信的心,去追逐梦想 ——kuangbin
Problem
Description
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
1 | 3 5 4 |
Sample Output
1 | 6 |
Solution
题意
这是一道走马分油的题目,要求路径回溯,觉得挺好玩的,写了下。
AC 代码
1 |
|
Note
敲代码时不要轻易复制 TAT,不要因为下边要写的和上边的一样就复制 = =,吃亏了呀。
写的时候还是纠结了下怎么回溯。
最初判断 impossble 的时候考虑不周,会 WA 或 RE。
为了避免麻烦, = =, 没有优化 BFS。