【POJ3414】Pots
本题知识点:宽度优先搜素 + 字符串
题意很简单,如何把用两个杯子,装够到第三个杯子的水。
操作有六种,这样就可以当作是bfs的搜索方向了
// FILL(1) 把第一个杯子装满
// FILL(2) 把第二个杯子装满
// POUR(1,2) 把第一个杯子的水倒进第二个杯子
// POUR(2,1) 把第二个杯子的水倒进第一个杯子
// DROP(1) 把第一个杯子的水都倒掉
// DROP(2) 把第二个杯子的水都倒掉
本题的难点是如何记录路径,我们可以用一个巧妙的方法去解决掉,详细请看代码
// POJ 3414
#include<iostream>
#include<cstdio>
#include<string>
#include<queue>
using namespace std;
bool take[102][102], ok;
int A, B, C;
struct node{
string str;
int l, r, pla[102], cnt; // cnt 记录有多少条路径
};
queue<node> que;
string str[] = {
"FILL(1)",
"FILL(2)",
"POUR(1,2)",
"POUR(2,1)",
"DROP(1)",
"DROP(2)"
};
void show(int len, int pla[]){
printf("%d\n", len);
for(int i = 1; i <= len; i++){
cout << str[pla[i]] << endl;
}
}
void bfs(){
ok = false;
take[0][0] = true;
node a;
a.str = "NONE";
a.l = a.r = a.cnt = 0;
que.push(a);
while(!que.empty()){
node next, now = que.front(); que.pop();
// cout << now.str << " ";
// printf("l:%d r:%d cnt:%d\n", now.l, now.r, now.cnt);
// show(now.cnt, now.pla);
// cout << endl;
if(now.l == C || now.r == C){
show(now.cnt, now.pla);
ok = true;
break;
}
// FILL(1)
if(now.l < A && !take[A][now.r]){
next.str = str[0];
next.l = A;
next.r = now.r;
// 这句循环是为了保存之前的路径 下同
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.pla[now.cnt + 1] = 0;
next.cnt = now.cnt + 1;
take[A][now.r] = true;
que.push(next);
}
// FILL(2)
if(now.r < B && !take[now.l][B]){
next.str = str[1];
next.l = now.l;
next.r = B;
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.pla[now.cnt + 1] = 1;
next.cnt = now.cnt + 1;
take[now.l][B] = true;
que.push(next);
}
// POUR(1, 2)
if(0 < now.l && now.r < B){
int R = now.l + now.r >= B ? B : now.l + now.r;
int L = R - now.r >= now.l ? 0 : now.l - (R - now.r);
if(!take[L][R]){
next.str = str[2];
next.l = L;
next.r = R;
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.pla[now.cnt + 1] = 2;
next.cnt = now.cnt + 1;
take[L][R] = true;
que.push(next);
}
}
// POUR(2,1)
if(now.l < A && 0 < now.r){
int L = now.l + now.r >= A ? A : now.l + now.r;
int R = L - now.l >= now.r ? 0 : now.r - (L - now.l);
if(!take[L][R]){
next.str = str[3];
next.l = L;
next.r = R;
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.pla[now.cnt + 1] = 3;
next.cnt = now.cnt + 1;
take[L][R] = true;
que.push(next);
}
}
// DROP(1)
if(!take[0][now.r]){
next.str = str[4];
next.l = 0;
next.r = now.r;
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.cnt = now.cnt + 1;
next.pla[now.cnt + 1] = 4;
take[0][now.r] = true;
que.push(next);
}
// DROP(2)
if(!take[now.l][0]){
next.str = str[5];
next.l = now.l;
next.r = 0;
for(int i = 1; i <= now.cnt; i++){
next.pla[i] = now.pla[i];
}
next.cnt = now.cnt + 1;
next.pla[now.cnt + 1] = 5;
take[now.l][0] = true;
que.push(next);
}
}
if(!ok) printf("impossible\n");
}
int main()
{
scanf("%d %d %d", &A, &B, &C);
bfs();
return 0;
}
【POJ3414】Pots的更多相关文章
- 【BFS】Pots
[poj3414]Pots Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 16925 Accepted: 7168 ...
- 【转】ACM训练计划
[转] POJ推荐50题以及ACM训练方案 -- : 转载自 wade_wang 最终编辑 000lzl POJ 推荐50题 第一类 动态规划(至少6题, 和 必做) 和 (可贪心) (稍难) 第二类 ...
- Python高手之路【六】python基础之字符串格式化
Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存.[PEP-3101] This ...
- 【原】谈谈对Objective-C中代理模式的误解
[原]谈谈对Objective-C中代理模式的误解 本文转载请注明出处 —— polobymulberry-博客园 1. 前言 这篇文章主要是对代理模式和委托模式进行了对比,个人认为Objective ...
- 【原】FMDB源码阅读(三)
[原]FMDB源码阅读(三) 本文转载请注明出处 —— polobymulberry-博客园 1. 前言 FMDB比较优秀的地方就在于对多线程的处理.所以这一篇主要是研究FMDB的多线程处理的实现.而 ...
- 【原】Android热更新开源项目Tinker源码解析系列之一:Dex热更新
[原]Android热更新开源项目Tinker源码解析系列之一:Dex热更新 Tinker是微信的第一个开源项目,主要用于安卓应用bug的热修复和功能的迭代. Tinker github地址:http ...
- 【调侃】IOC前世今生
前些天,参与了公司内部小组的一次技术交流,主要是针对<IOC与AOP>,本着学而时习之的态度及积极分享的精神,我就结合一个小故事来初浅地剖析一下我眼中的“IOC前世今生”,以方便初学者能更 ...
- Python高手之路【三】python基础之函数
基本数据类型补充: set 是一个无序且不重复的元素集合 class set(object): """ set() -> new empty set object ...
- Python高手之路【一】初识python
Python简介 1:Python的创始人 Python (英国发音:/ˈpaɪθən/ 美国发音:/ˈpaɪθɑːn/), 是一种解释型.面向对象.动态数据类型的高级程序设计语言,由荷兰人Guido ...
随机推荐
- H5+asp.net 微信开发 遇到过的坑
一.微信授权登录 1. 根据code 获取_access_tokens 2. 根据取到的openid和_access_tokens获取用户信息最神奇的是我用我自己的微信账号测试,一开始还可以取到tok ...
- 2019 小红书java面试笔试题 (含面试题解析)
本人5年开发经验.18年年底开始跑路找工作,在互联网寒冬下成功拿到阿里巴巴.今日头条.小红书等公司offer,岗位是Java后端开发,因为发展原因最终选择去了小红书,入职一年时间了,也成为了面试官 ...
- jwt认证生成后的token如何传回后端并解析的详解
jwt认证生成后的token后端解析 一.首先前端发送token token所在的位置headers {'authorization':token的值',Content-Type':applicati ...
- drf--频率组件
目录 频率组件简介 自定义频率类 内置频率类及局部使用 全局使用 源码分析 SimpleRateThrottle源码分析 频率组件简介 主要是为了限制用户访问的次数,比如某一个接口(发送验证码)同一个 ...
- Django---图书管理系统,多对多(ManyToMany),request获取多个值getlist(),反查(被关联的对象.author_set.all)
Django---图书管理系统,多对多(ManyToMany),request获取多个值getlist(),反查(被关联的对象.author_set.all) 一丶多对多查询 表建立多对多关系的方式 ...
- 给基于对话框的MFC程序添加状态栏并实时显示时间
转载自丝雪儿 1.首先在string table 里添加两个字串,ID分别为IDS_INDICATOR_MESSAGE and IDS_INDICATOR_TIME 2.在你的 dlg.h 类里面加个 ...
- 在Node.js中使用ejsexcel输出EXCEL文件
1.背景 在Nodejs应用程序中输出Excel,第一印象想到的一般是node-xlsx,这类插件不仅需要我们通过JS写入数据,还需要通过JS进行EXCEL显示样式的管理. 这是个大问题,不仅代码冗余 ...
- 线下AWD平台搭建以及一些相关问题解决
线下AWD平台搭建以及一些相关问题解决 一.前言 文章首发于tools,因为发现了一些新问题但是没法改,所以在博客进行补充. 因为很多人可能没有机会参加线下的AWD比赛,导致缺乏这方面经验,比如我参加 ...
- Spring Boot加载application.properties配置文件顺序规则
SpringApplication会从以下路径加载所有的application.properties文件: 1.file:./config/(当前目录下的config文件夹) 2.file:./(当前 ...
- 【MySql】Update批量更新与批量更新多条记录的不同值实现方法
mysql更新语句很简单,更新一条数据的某个字段,一般这样写: UPDATE mytable SET myfield = 'value' WHERE other_field = 'other_valu ...