Pots【广搜,模拟】

Pots

 POJ - 3414 

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 jis 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)

题意:给你三个数字A,B,C,A,B代表容器的体积,C代表需要得到的水的体积,每次可以进行六种操作:将A容器填满;将B容器填满:将A容器的水倒入B中;将B容器的水倒入A中;倒掉A中的水;倒掉B中的水。问最少需要多少步才能够使A,B中某容器的水恰好为C升,并将过程输出。

方法:通过广搜每次遍历六种情况,记录其前一个步骤,再通过深搜输出,博主代码过于冗长,望见谅!!!

AC代码:

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <map>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <set>
#include <utility>
using namespace std;
typedef long long ll;
#define inf 0x3f3f3f3f
#define rep(i,l,r) for(int i=l;i<=r;i++)
#define lep(i,l,r) for(int i=l;i>=r;i--)
#define ms(arr) memset(arr,0,sizeof(arr))
//priority_queue<int,vector<int> ,greater<int> >q;
const int maxn = (int)1e6 + 5;
const ll mod = 1e9+7;
int a,b,a1,b1,c;
struct node
{int x,y;int step;int pre;int id;int way;
};
int ids;
int tpl;
bool vis[1000][1000];
int tmp[maxn];
int tmp1[maxn];
int bfs()
{node no;no.x=0;no.y=0;vis[0][0]=true;no.pre=-1;no.step=0;no.way=-1;no.id=0;tmp[no.id]=no.pre;tmp[no.id]=no.way;ids=0;queue<node> q;while(!q.empty())q.pop();q.push(no);while(!q.empty()) {node front=q.front();q.pop();for(int i=1;i<=6;i++){node tail;switch(i) {case 1:{if(front.x<a&&vis[a][front.y]==false){tail.x=a;tail.y=front.y;tail.step=front.step+1;ids++;tail.id=ids;tail.pre=front.id;tail.way=1;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;vis[a][front.y]=true;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}break;}case 2:{if(front.y<b&&vis[front.x][b]==false){tail.y=b;tail.x=front.x;ids++;tail.id=ids;tail.step=front.step+1;tail.pre=front.id;tail.way=2;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;vis[front.x][b]=true;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}break;}case 3:{if(front.x>0&&front.y<b){int k1=front.x-(b-front.y),k2;if(k1<0){k1=0;k2=front.y+front.x;}else{k1=front.x-(b-front.y);k2=b;}if(vis[k1][k2]==false){vis[k1][k2]=true;tail.x=k1;tail.y=k2;ids++;tail.id=ids;tail.step=front.step+1;tail.pre=front.id;tail.way=3;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}}break;}case 4:{if(front.y>0&&front.x<a){int k1=front.y-(a-front.x),k2;if(k1<0){k1=0;k2=front.x+front.y;}else{k1=front.y-(a-front.x);k2=a;}if(vis[k2][k1]==false){vis[k2][k1]=true;tail.y=k1;tail.x=k2;ids++;tail.id=ids;tail.step=front.step+1;tail.pre=front.id;tail.way=4;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}}break;}case 5:{if(front.x>0&&vis[0][front.y]==false){vis[0][front.y]=true;tail.x=0;tail.y=front.y;ids++;tail.id=ids;tail.step=front.step+1;tail.pre=front.id;tail.way=5;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}break;}case 6:{if(front.y>0&&vis[front.x][0]==false){vis[front.x][0]=true;tail.x=front.x;tail.y=0;ids++;tail.id=ids;tail.step=front.step+1;tail.pre=front.id;tail.way=6;tmp[tail.id]=tail.pre;tmp1[tail.id]=tail.way;if(tail.x==c||tail.y==c){tpl=tail.id;return tail.step;}q.push(tail);//printf("%d-----%d %d\n",tail.way,tail.x,tail.y);}break;}default :break;}//printf("----------------%d\n",i);}}return -1;
}
void dfs(int x)
{if(tmp[tmp[x]]!=-1)dfs(tmp[x]);switch(tmp1[x]){case 1:{printf("FILL(1)\n");break;}case 2:{printf("FILL(2)\n");break;}case 3:{printf("POUR(1,2)\n");break;}case 4:{printf("POUR(2,1)\n");break;}case 5:{printf("DROP(1)\n");break;}case 6:{printf("DROP(2)\n");break;}default :{break;}}
}int main() 
{//freopen("in.txt", "r", stdin);//freopen("out.txt", "w", stdout);ios::sync_with_stdio(0),cin.tie(0);scanf("%d %d %d",&a,&b,&c);int ans=bfs();if(ans==-1)printf("impossible\n");else{printf("%d\n",ans);dfs(tpl);}return 0;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/536376.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

非常可乐【广搜,模拟】

非常可乐 HDU - 1495 大家一定觉的运动以后喝可乐是一件很惬意的事情&#xff0c;但是seeyou却不这么认为。因为每次当seeyou买了可乐以后&#xff0c;阿牛就要求和seeyou一起分享这一瓶可乐&#xff0c;而且一定要喝的和seeyou一样多。但seeyou的手中只有两个杯子&#xff0…

问题 A: 深度学习

问题 A: 深度学习 时间限制: 1 Sec 内存限制: 128 MB 提交: 53 解决: 42 [提交] [状态] [讨论版] [命题人:admin] 题目描述 小 A 最近在研究深度学习&#xff0c;他自己搭建了一个很牛逼的神经网络&#xff0c;现在他手头一共有 n 组训练数据&#xff0c;一开始他会给自己的…

堆树

一、堆树的定义 堆树的定义如下&#xff1a; &#xff08;1&#xff09;堆树是一颗完全二叉树&#xff1b; &#xff08;2&#xff09;堆树中某个节点的值总是不大于或不小于其孩子节点的值&#xff1b; &#xff08;3&#xff09;堆树中每个节点的子树都是堆树。 当父节点的键…

问题 D: 最小生成树II

问题 D: 最小生成树II 时间限制: 1 Sec 内存限制: 128 MB 提交: 89 解决: 44 [提交] [状态] [讨论版] [命题人:admin] 题目描述 小A有一张n个点的带权无向图&#xff0c;这张无向图非常特别&#xff0c;首先第i个点有一个点权ai&#xff0c;之后这张无向图是一张完全图&…

问题 G: 区间权值

问题 G: 区间权值 时间限制: 1 Sec 内存限制: 128 MB 提交: 112 解决: 49 [提交] [状态] [讨论版] [命题人:admin] 题目描述 小Bo有n个正整数a1..an&#xff0c;以及一个权值序列w1…wn&#xff0c;现在他定义 现在他想知道的值&#xff0c;需要你来帮帮他 你只需要输出答案…

问题 I: 连通块计数

问题 I: 连通块计数 时间限制: 1 Sec 内存限制: 128 MB 提交: 108 解决: 45 [提交] [状态] [讨论版] [命题人:admin] 题目描述 小A有一棵长的很奇怪的树&#xff0c;他由n条链和1个点作为根构成&#xff0c;第i条链有ai个点&#xff0c;每一条链的一端都与根结点相连。 现在…

telnet 功能启用并测试端口是否正常

记录日期&#xff1a;2019年6月21日 13点52分 操作系统&#xff1a;Windows 10 由于 Ping命令可以检查网络是否连通&#xff0c;但无法准确判断某个端口是否连通&#xff0c;因此需要使用 Telnet协议。 1、打开控制面板中的程序和功能。 2、侧边栏&#xff0c;启用或关闭Window…

步步为营 SharePoint 开发学习笔记系列 七、SharePoint Timer Job 开发

概要 项目需求要求我们每天晚上同步员工的一些信息到sharepoint 的user List &#xff0c;我们决定定制开发sharepoint timer Job,Sharepoint timer Job是sharePoint的定时作业Job,需要安装、布曙到服务器上,而这里我只是介绍下Job开发的例子&#xff0c;以供大家学习用。 开发…

问题 J: 寻找复读机【模拟】

问题 J: 寻找复读机 时间限制: 1 Sec 内存限制: 128 MB 提交: 131 解决: 50 [提交] [状态] [讨论版] [命题人:admin] 题目描述 某个QQ群里一共有n个人&#xff0c;他们的编号是1..n&#xff0c;其中有一些人本质上是复读机。 小A发现&#xff0c;如果一个人的本质是复读机&…

windows下jenkins常见问题填坑

没有什么高深的东西&#xff0c;1 2天的时间大多数人都能自己摸索出来&#xff0c;这里将自己遇到过的问题分享出来避免其他同学再一次挖坑. 目录 1. 主从节点 2. Nuget自动包还原 3. powershell部署 4. 内网机器实现基于变化的构建 5. Github私有项目pull时限 所谓主从&#x…

Cow Contest【最短路-floyd】

Cow Contest POJ - 3660 N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest. As we all know, some cows code better than others. Each cow has a certain constant skill rating that is unique among the competitors. …

【学习Android NDK开发】Type Signatures(类型签名)

类型签名&#xff08;Type Signatures&#xff09; (<Parameter 1 Type Code>[<Parameter 1 Class>];...)<Return Type Code> The JNI uses the Java VM’s representation of type signatures. Following Table shows these type signatures. Type Signatur…

Symantec(赛门铁克)非受管检测

为了查找局域网内没有安装赛门铁克客户端的IP&#xff0c;采用Symantec Endpoint Protect Manager 的非受管检测机制进行网段扫描。 非受管检测机制的原理是&#xff1a;每台电脑开机时都会向同网段电脑发arp&#xff0c;当非受管检测器接到arp请求时&#xff0c;会写入本地的a…

SQL语句性能优化操作

1、对查询进行优化&#xff0c;应尽量避免全表扫描&#xff0c;首先应考虑在where及order by涉及的列上建立索引。 2、应尽量避免在where子句中对字段进行null值判断&#xff0c;创建表时NULL是默认值&#xff0c;但大多数时候应该使用NOT NULL&#xff0c;或者使用一个特殊的值…

sql语言特殊字符处理

我们都知道SQL Server查询过程中&#xff0c;单引号“”是特殊字符&#xff0c;所以在查询的时候要转换成双单引号“”。但这只是特殊字符的一个&#xff0c;在实际项目中&#xff0c;发现对于like操作还有以下特殊字符&#xff1a;下划线“_”&#xff0c;百分号“%”&#xf…

小节

算法导论已学两部分&#xff0c;第一部分是基础知识&#xff0c;第二部分是排序。基础知识介绍如何分析证明算法以及求时间复杂度。第二部分的排序学了很长时间。先是从简单排序到复杂排序的一个过渡&#xff0c;打开了很多思路。然后就是无尽的算法分析。算法分析的时间比理解…

SPS2003升级到MOSS2007相关资料及问题总结

这几天要把客户的SPS2003门户升级到MOSS2007的&#xff0c;客户SPS2003门户&#xff0c;数据26G&#xff0c;使用了自定义WebPart、自定义页面、SSO等功能。升级过程中碰到大量问题。其中主要的问题有几个&#xff0c;在这里把它们整理一下> 1、sps2003升级时&#xff0c;升…

Milking Time【动态规划-dp】

Milking Time POJ - 3616 Bessie is such a hard-working cow. In fact, she is so focused on maximizing her productivity that she decides to schedule her next N (1 ≤ N ≤ 1,000,000) hours (conveniently labeled 0..N-1) so that she produces as much milk as po…

HTTP首部(1)

1、报文首部 HTTP协议的请求和响应必定包含HTTP首部&#xff0c;它包括了客户端和服务端分别处理请求和响应提供所需要的信息。报文主体字儿是所需要的用户和资源的信息都在这边。  HTTP请求报文组成 方法&#xff0c;URL&#xff0c;HTTP版本&#xff0c;HTTP首部字段 HTTP响…

UVA272--TEX Quotes【字符串】

TEX Quotes UVA - 272 题目传送门 题目大意&#xff1a;将输入字符串中的所有对双引号的做双引号改为 &#xff0c;右双引号改为 。 解决方法&#xff1a;遍历一遍及时修改即可。 AC代码&#xff1a; #include <cstdio> #include <iostream> #include <…