poj 3414 Pots【bfs+回溯路径 正向输出】
题目地址:http://poj.org/problem?id=3414
Time Limit: 1000MS | Memory Limit: 65536K | |||
Total Submissions: 12080 | Accepted: 5104 | Special Judge |
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)
#include<stdio.h>
#include<string.h>
#include <queue>
#include <stack>
#include <algorithm> using namespace std; int a, b, c;//a b容器的大小 c目标体积 bool vis[101][101]; struct node
{
char ch;
int x,y;
int pre;
int self;
}op[100000];
int e=0; struct path
{
int u, v;
int cnt;
int pre;
int self;
}; //int road[10000], step; stack<int>p;
bool ok;
int ans; void bfs()
{
queue<path>q;//创建队列
memset(vis, false, sizeof(vis));//初始化未访问 path s; s.u=0; s.v=0; s.cnt=0; s.pre=-1; s.self=-1;
q.push(s); int num=-1;
vis[0][0]=true; ok=false; ans=0; while(!q.empty())
{
path cur=q.front(); q.pop(); if(cur.u==c || cur.v==c){
ans=cur.cnt;
ok=true;
int fa=cur.self;
while(fa!=-1){
p.push(fa);
fa=op[fa].pre;
}
break;
}//如果找到了目标状态 //进行6种操作
path temp;
//Fill A
temp=cur; temp.u=a; temp.cnt=cur.cnt+1;
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;//标记状态访问
op[e].pre=cur.self;
op[e].ch='F'; op[e++].x=1;
} //File B
temp=cur; temp.v=b; temp.cnt=cur.cnt+1;
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;
op[e].pre=cur.self;
op[e].ch='F'; op[e++].x=2;
} //Drop A
temp=cur; temp.u=0; temp.cnt=cur.cnt+1;
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;
op[e].pre=cur.self;
op[e].ch='D'; op[e++].x=1;
}
//Drop B
temp=cur; temp.v=0; temp.cnt=cur.cnt+1;
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;
op[e].pre=cur.self;
op[e].ch='D'; op[e++].x=2;
} //pour(A, B)
temp.v=cur.u+cur.v; temp.u=0; temp.cnt=cur.cnt+1;
if(temp.v>b){
temp.v=b;//装满B
temp.u=cur.u+cur.v-b;
}
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;
op[e].pre=cur.self;
op[e].ch='P'; op[e].x=1; op[e++].y=2;
} //pour(B, A)
temp.u=cur.u+cur.v; temp.v=0; temp.cnt=cur.cnt+1;
if(temp.u>a){
temp.u=a;//装满A
temp.v=cur.u+cur.v-a;
}
if(!vis[temp.u][temp.v]){
temp.pre=cur.self; num++; temp.self=num;
q.push(temp);
vis[temp.u][temp.v]=true;
op[e].pre=cur.self;
op[e].ch='P'; op[e].x=2; op[e++].y=1;
} }
} int main()
{
scanf("%d %d %d", &a, &b, &c);
e=0;
bfs(); if(!ok){
printf("impossible\n");
}
else{
printf("%d\n", ans);
while(!p.empty())
{
int dd=p.top(); p.pop(); if(op[dd].ch=='F'){
printf("FILL(%d)\n", op[dd].x );
}
else if(op[dd].ch=='D'){
printf("DROP(%d)\n", op[dd].x );
}
else{
printf("POUR(%d,%d)\n", op[dd].x, op[dd].y );
}
}
} return 0;
}
POUR(2,1) DROP(1) POUR(2,1) FILL(2) POUR(2,1) 代码:
poj 3414 Pots【bfs+回溯路径 正向输出】的更多相关文章
- POJ 3414 Pots ( BFS , 打印路径 )
题意: 给你两个空瓶子,只有三种操作 一.把一个瓶子灌满 二.把一个瓶子清空 三.把一个瓶子里面的水灌到另一个瓶子里面去(倒满之后要是还存在水那就依然在那个瓶子里面,或者被灌的瓶子有可能没满) 思路: ...
- POJ 3414--Pots(BFS+回溯路径)
Pots Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9963 Accepted: 4179 Special Ju ...
- poj 3414 Pots(bfs+输出路径)
Description You are given two pots, having the volume of A and B liters respectively. The following ...
- POJ 3414 Pots bfs打印方案
题目: http://poj.org/problem?id=3414 很好玩的一个题.关键是又16ms 1A了,没有debug的日子才是好日子.. #include <stdio.h> # ...
- POJ - 3414 Pots BFS(著名倒水问题升级版)
Pots You are given two pots, having the volume of A and B liters respectively. The following operati ...
- POJ 3414 Pots(BFS)
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%lld & %llu Description You are g ...
- POJ 3414 Pots (BFS/DFS)
Pots Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7783 Accepted: 3261 Special Ju ...
- poj 3414 Pots bfs+模拟
#include<iostream> #include<cstring> #define fillA 1 #define pourAB 2 #define dropA 3 #d ...
- poj 3414 Pots 【BFS+记录路径 】
//yy:昨天看着这题突然有点懵,不知道怎么记录路径,然后交给房教了,,,然后默默去写另一个bfs,想清楚思路后花了半小时写了120+行的代码然后出现奇葩的CE,看完FAQ改了之后又WA了.然后第一次 ...
随机推荐
- day1笔记 初识python,paython基础
一.计算机,操作系统 软件发送指令给操作系统,操作系统再把指令发送给 内存,cpu,硬盘等 二.Python的历史. Python2: 1.臃肿,源码的重复量很多.2.语法不清晰,掺杂着c,++,P ...
- Linux之(tomcat)服务之服务调优
Tomcat调优原则: ● 增加连接数 ● 调整工作模式 ● 启用gzip压缩 ● 调整JVM内存大小 ● 作为web服务器时,与Apache或者Nginx整合 ● 合理选择垃圾回收算法 ● 尽量使用 ...
- Python 邮箱
#coding:utf-8from email.header import Headerfrom email.mime.text import MIMETextfrom email.utils imp ...
- 【BZOJ2150】部落战争 最小流
[BZOJ2150]部落战争 Description lanzerb的部落在A国的上部,他们不满天寒地冻的环境,于是准备向A国的下部征战来获得更大的领土. A国是一个M*N的矩阵,其中某些地方是城镇, ...
- 【BZOJ1058】[ZJOI2007]报表统计 STL
[BZOJ1058][ZJOI2007]报表统计 Description 小Q的妈妈是一个出纳,经常需要做一些统计报表的工作.今天是妈妈的生日,小Q希望可以帮妈妈分担一些工作,作为她的生日礼物之一.经 ...
- 【转】NPOI自定义单元格背景颜色
经常在NPOI群里聊天时发现有人在问NPOI设置单元格背景颜色的问题,而Tony Qu大神的博客里没有相关教程,刚好最近在做项目时研究了一下这一块,在这里总结一下. 在NPOI中默认的颜色类是HSSF ...
- AJAX 异步传数组时候,后台接收不到!
呵呵,那么问题又来了! 这是为啥呢!! var ids= []; $.ajax({ url: 'xxxx.do', data: { ids: ids}, dataType: "json&qu ...
- Introduction to Mathematical Thinking - Week 4
否定的逻辑 应该思考符号背后表示的逻辑,而不是像操作算术运算符一样操作逻辑符号. 比如 对于任意的 x,x属于自然数,那么 x 是偶数或者奇数:这是对的 如果使用“乘法分配律”拆分,变成“对于任意的x ...
- python系列十一:python3数据结构
#!/usr/bin/python #Python3 数据结构'''Python中列表是可变的,这是它区别于字符串和元组的最重要的特点,一句话概括即:列表可以修改,而字符串和元组不能.''' '''将 ...
- pc端监听屏幕实现导航固定定位
要点:占位符 js,监听屏幕滚动事件,当滚动条距离浏览器顶部的距离 大于 要固定定位开始以下元素的距离,则给要固定元素添加fixed样式. 初始化方法时,要给占位符添加样式 function sort ...