搜索进阶题目之Pots

2020年1月17日 808点热度 0人点赞 0条评论

搜索进阶题目之Pots

时间: 1ms        内存:128M

描述:



You are given two pots, having the volume of A and B liters respectively. The following operations can be performed:

1.  FILL(i)  fill the pot i (1 ≤ i ≤ 2) from the tap;

2.  DROP(i)   empty the pot i to the drain;

3.  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.

输入:


On the first and only line is the numbers A, B, and C. These are all integers in the range from 1 to 100 and C≤max(A,B).

输出:


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’.

示例输入:

3 5 4

示例输出:

6
FILL(2)
POUR(2,1)
DROP(1)
POUR(2,1)
FILL(2)
POUR(2,1)

提示:

参考答案:

解锁文章

没有看到答案?微信扫描二维码可免费解锁文章

微信扫描二维码解锁

使用微信扫描二维码打开广告页面后可以立即关闭,再刷新此页面即可正常浏览此文章

所跳转广告均由第三方提供,并不代表本站观点!

已经扫描此二维码?点此立即跳转

code

这个人很懒,什么都没留下

文章评论