热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

POJ3414Pots(经典bfs)

poj3414两个壶倒水问题

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)

Source

Northeastern Europe 2002, Western Subregion

两个壶,可以清空,可以加满,可以相互倒水,不过每次到要么这个壶水倒完,要么那个壶满了,要求一个壶有一定的水结束,输出步骤

bfs具体在代码中


#include
#include
#include
#include
#include
using namespace std;
#define N 105

struct stud{
int a,b;
int time;
string mv;
};

int a,b,c;

int vis[N][N];

int judge(int x,int y)
{
    if(x==c||y==c)
        return 1;
    return 0;
}

stud bfs()
{
    struct stud next,cur;
    queueq;

    while(!q.empty())
        q.pop();

    cur.a=cur.b=0;
    cur.mv="";
    cur.time=0;

    if(cur.a==c||cur.b==c)
        return cur;

    q.push(cur);

    memset(vis,0,sizeof(vis));
    vis[0][0]=1;

    while(!q.empty())
    {
        cur=q.front();
        q.pop();

        if(cur.a0&&!vis[0][cur.b])   //倒出a
        {
            next.a=0;
            next.b=cur.b;
            next.mv=cur.mv;
            next.mv+="D1";
            next.time=cur.time+1;

            vis[next.a][next.b]=1;


            if(judge(next.a,next.b)) return next;
            q.push(next);
        }

        if(cur.b>0&&!vis[cur.a][0])    //倒出b
        {
            next.b=0;
            next.a=cur.a;
            next.mv=cur.mv;
            next.mv+="D2";
            next.time=cur.time+1;

            vis[next.a][next.b]=1;


            if(judge(next.a,next.b)) return next;
            q.push(next);
        }

        //a给b倒水

        if(cur.b0&&cur.a+cur.b<=b&&!vis[0][cur.a+cur.b])
        {
            next.a=0;
            next.b=cur.a+cur.b;
            next.time=cur.time+1;
            next.mv=cur.mv+"P12";

            vis[next.a][next.b]=1;

             if(judge(next.a,next.b)) return next;
            q.push(next);
        }
        else
          if(cur.b0&&cur.a+cur.b>b&&!vis[cur.a+cur.b-b][b])
          {
              next.a=cur.a+cur.b-b;
              next.b=b;
              next.time=cur.time+1;
              next.mv=cur.mv+"P12";

              vis[next.a][next.b]=1;

              if(judge(next.a,next.b)) return next;
              q.push(next);
          }

          //b给a倒水

          if(cur.b>0&&cur.a!=a&&cur.a+cur.b<=a&&!vis[cur.a+cur.b][0])
          {
              next.a=cur.a+cur.b;
              next.b=0;
              next.time=cur.time+1;
              next.mv=cur.mv+"P21";

              vis[next.a][next.b]=1;
               if(judge(next.a,next.b)) return next;
              q.push(next);
          }
          else
            if(cur.b>0&&cur.a!=a&&cur.a+cur.b>a&&!vis[a][cur.a+cur.b-a])
          {
              next.a=a;
              next.b=cur.a+cur.b-a;
              next.time=cur.time+1;
              next.mv=cur.mv+"P21";

              vis[next.a][next.b]=1;
               if(judge(next.a,next.b)) return next;
              q.push(next);

          }

    }

   struct stud ans;
    ans.a=-1;
    return ans;
}

int main()
{
        int i;
        scanf("%d%d%d",&a,&b,&c);
        struct stud cur;

        cur=bfs();

        if(cur.a==-1)
        {
            printf("impossible\n");
            return 0;
        }

        printf("%d\n",cur.time);

        int len=cur.mv.size();

        for(i=0;i



推荐阅读
  • LeetCode 540:有序数组中的唯一元素
    来源:力扣(LeetCode),链接:https://leetcode-cn.com/problems/single-element-in-a-sorted-array。题目要求在仅包含整数的有序数组中,找到唯一出现一次的元素,并确保算法的时间复杂度为 O(log n) 和空间复杂度为 O(1)。 ... [详细]
  • 如何在Faceu激萌中设置和使用妆容切换特效?
    本文将详细介绍如何在Faceu激萌应用中设置和使用妆容切换特效,帮助用户轻松实现创意拍摄。无论是新手还是有经验的用户,都能从中受益。 ... [详细]
  • 本文介绍如何解决在 IIS 环境下 PHP 页面无法找到的问题。主要步骤包括配置 Internet 信息服务管理器中的 ISAPI 扩展和 Active Server Pages 设置,确保 PHP 脚本能够正常运行。 ... [详细]
  • Python 异步编程:深入理解 asyncio 库(上)
    本文介绍了 Python 3.4 版本引入的标准库 asyncio,该库为异步 IO 提供了强大的支持。我们将探讨为什么需要 asyncio,以及它如何简化并发编程的复杂性,并详细介绍其核心概念和使用方法。 ... [详细]
  • 探讨一个老旧 PHP MySQL 系统中,时间戳字段不定期出现异常值的问题及其可能原因。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 郑州大学在211高校中的地位与排名解析
    本文将详细解读郑州大学作为一所位于河南省的211和双一流B类高校,在全国211高校中的地位与排名,帮助高三学生更好地了解这所知名学府的实力与发展前景。 ... [详细]
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 优化ASM字节码操作:简化类转换与移除冗余指令
    本文探讨如何利用ASM框架进行字节码操作,以优化现有类的转换过程,简化复杂的转换逻辑,并移除不必要的加0操作。通过这些技术手段,可以显著提升代码性能和可维护性。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 电子元件封装库:三极管、MOS管及部分LDO(含3D模型)
    本资源汇集了常用的插件和贴片三极管、MOS管以及部分LDO的封装,涵盖TO和SOT系列。所有封装均配有高质量的3D模型,共计96种,满足日常设计需求。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • 本文详细介绍了如何使用PHP检测AJAX请求,通过分析预定义服务器变量来判断请求是否来自XMLHttpRequest。此方法简单实用,适用于各种Web开发场景。 ... [详细]
author-avatar
快乐健康美丽长寿tg
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有