POJ-3414-Pots

来源:互联网 发布:淘宝定价 编辑:程序博客网 时间:2024/04/30 03:00

O - Pots
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
Submit

Status

Practice

POJ 3414
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
3 5 4
Sample Output
6
FILL(2)
POUR(2,1)
DROP(1)
POUR(2,1)
FILL(2)
POUR(2,1)

题意:有ab两个被子,给出ab的容量AB和目标水量C,操作时可以选择,充满a或b,a中的倒入b或反着倒,清空a或b,当有一个杯子的水量达到目标水量C时,输出最少步数,及操作过程。

难点可能就是在输出操作过程上,实际上是模拟加上广度优先搜索的思想

看代码吧,基本每行都写注释了

#include<stdio.h>#include<string.h>#include<string>#include<stack>#include<queue>#include<math.h>#include<limits.h>#include<iostream>#include<algorithm>using namespace std;//广度搜索struct Node{    int a,b,step;    char str[111][111];};int A,B,C;bool mark[111][111];bool bfs(){    memset(mark,false,sizeof(mark));    queue<Node>que;    Node p,q;    p.a=0,p.b=0,p.step=0;    que.push(p);    mark[0][0]=true;    while(!que.empty())    {        p=que.front();        que.pop();        if(p.a==C||p.b==C)        {//找到终点水量            printf("%d\n",p.step);            for(int i=1; i<=p.step; i++)            {//根据步数,将存储在str数组中的信息输出                printf("%s\n",p.str[i]);            }            return true;//返回真,说明目标达到,结束函数        }        if(p.a==0)//如果a杯空着        {            q=p;//创建子节点            q.a=A;//给它充满            q.step++;//步数加一            strcpy(q.str[q.step],"FILL(1)");//存入操作信息            if(!mark[q.a][q.b])//如果a,b被子此时的状态没有出现过            {                mark[q.a][q.b]=true;//标记为已出现                que.push(q);//子节点入队            }        }        else if(p.a<=A)//如果a杯存量小于等于容量        {            q=p;//创建子节点            q.a=0;//清空a杯            q.step++;//步数加一            strcpy(q.str[q.step],"DROP(1)");//根据步数记录操作信息            if(!mark[q.a][q.b])//如果a,b被子此时的状态没有出现过            {                mark[q.a][q.b]=true;//标记为已出现                que.push(q);//子节点入队            }            if(p.b<B)//如果b杯未满或为空            {                q=p;//创建子节点                if(q.a+q.b<=B)//如果ab存量和小于等于b杯容量                {                    q.b+=q.a;//水都转移到b杯                    q.a=0;//a杯清空                }                else//如果ab存量和大于b杯容量                {                    q.a=(q.b+q.a)-B;//ab存量大于b杯容量的部分存到a杯                    q.b=B;//此时b杯充满                }                q.step++;//步数加一                strcpy(q.str[q.step],"POUR(1,2)");//根据步数记录操作信息                if(!mark[q.a][q.b])//如果此时ab的状态未出现过                {                    mark[q.a][q.b]=true;//记录为已出现                    que.push(q);//结点入队                }            }        }        if(p.b==0)//b杯为空时        {            q=p;//创建子节点            q.b=B;//b杯充满            q.step++;//步数加一            strcpy(q.str[q.step],"FILL(2)");//根据步数记录操作信息            if(!mark[q.a][q.b])//如果此时ab的状态未曾出现过            {                mark[q.a][q.b]=true;//标记此时状态已出现                que.push(q);//结点入队            }        }        else if(p.b<=B)//如果b杯存量小于等于容量        {            q=p;//创建子节点            q.b=0;//清空b杯            q.step++;//步数加一            strcpy(q.str[q.step],"DROP(2)");//根据步数记录操作信息            if(!mark[q.a][q.b])//此时ab状态未曾出现过            {                mark[q.a][q.b]=true;//标记此状态已出现                que.push(q);//结点入队            }            if(p.a<A)//如果a未满            {                q=p;//创建子节点                if(q.b+q.a<=A)//如果ab存量和小于等于a容量                {                    q.a+=q.b;//ab存量转移到a杯                    q.b=0;//b杯清空                }                else//如果ab存量大于a容量                {                    q.b=(q.b+q.a)-A;//多余的存量存到b杯                    q.a=A;//a杯充满                }                q.step++;//步数加一                strcpy(q.str[q.step],"POUR(2,1)");//根据步数记录操作信息                if(!mark[q.a][q.b])//如果此时ab状态未曾出现过                {                    mark[q.a][q.b]=true;//标记为已出现                    que.push(q);//结点入队                }            }        }    }    return false;//如果都到这一步了,那肯定是无解了}int main(){    while(~scanf("%d%d%d",&A,&B,&C))    {        if(!bfs())puts("impossible");    }    return 0;}
0 0
原创粉丝点击