poj 3414 Pots BFS

Description

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

Input

On the first and only line are the numbers AB, 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)

 

题意及分析:

有两个容器,给出容积。进行题目给出的三种操作。使得其中一个储水量达到指定要求。

关键是对每一步状态的表示。其实是第一次处理这种bfs问题。就是用很多量来表示某一个状态。详细地表示在下面有。

大体思路就是用结构体存每一个状态,vis[][]数组表示两个容器的水的体积。找到目标状态后,递归输出。

心得就是对于自己的想法要敢于尝试。

AC代码:

#include
   
   
    
    
#include
    
    
     
     
#include
     
     
      
      
#include
      
      
       
       
#include
       
        #include 
        
          #include 
         
           #include 
          
            #define INF 0x3f3f3f3f using namespace std; struct node { int step,id,pot[3]; //step 表示步数;id表示编号;pot[1],pot[2]表示1号和2号水的体积 int type,pre,cur; //type 表示操作的类型 pre表示前一个状态的id cur表示操作对象(1号容器还是2号容器) }que[100000]; node now,tmp; map 
           
             ma; int c,front,rear,flag,v[3],vis[110][110]; bool operate(int k,int i) { if(i==0) //代表FILL操作 { tmp.pot[k]=v[k]; tmp.pot[3-k]=now.pot[3-k]; tmp.type=i; tmp.id=rear; tmp.cur=k; tmp.step=now.step+1; tmp.pre=now.id; } else if(i==1) //代表DROP操作 { tmp.pot[k]=0; tmp.pot[3-k]=now.pot[3-k]; tmp.type=i; tmp.cur=k; tmp.id=rear; tmp.step=now.step+1; tmp.pre=now.id; } else //代表POUR操作 { if(now.pot[k]>=v[3-k]-now.pot[3-k]) //k容器的水可以讲3-k装满 { tmp.pot[k]=now.pot[k]-(v[3-k]-now.pot[3-k]); tmp.pot[3-k]=v[3-k]; tmp.type=i; tmp.cur=k; tmp.id=rear; tmp.step=now.step+1; tmp.pre=now.id; } else //无法装满 { tmp.pot[k]=0; tmp.pot[3-k]=now.pot[k]+now.pot[3-k]; tmp.type=i; tmp.cur=k; tmp.id=rear; tmp.step=now.step+1; tmp.pre=now.id; } } if(vis[tmp.pot[1]][tmp.pot[2]]) //此状态出现过 return 0; else { vis[tmp.pot[1]][tmp.pot[2]]=1; return 1; } } void output(int n) { if(que[n].pre==-1) return; output(que[n].pre); cout< 
             
            
           
          
        
      
      
     
     
    
    
   
   

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值