题目描述 Description

有两个无刻度标志的水壶,分别可装 x 升和 y 升 ( x,y 为整数且均不大于 100 )的水。设另有一水 缸,可用来向水壶灌水或接从水壶中倒出的水, 两水壶间,水也可以相互倾倒。已知 x 升壶为空 壶, y 升壶为空壶。问如何通过倒水或灌水操作, 用最少步数能在x或y升的壶中量出 z ( z ≤ 100 )升的水 来。

输入描述 Input Description

一行,三个数据,分别表示 x,y 和 z;

输出描述 Output Description

一行,输出最小步数 ,如果无法达到目标,则输出"impossible"

样例输入 Sample Input

3 22 1

样例输出 Sample Output

14

数据范围及提示 Data Size & Hint

广度优先搜索 深度优先搜索 迭代搜索 搜索

【DFS:】

#include<bits/stdc++.h>
#define debug() puts("++++")
#define gcd(a,b) __gcd(a,b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a,b,sizeof(a))
#define sz size()
#define be begin()
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
#define all 1,n,1
#define rep(i,n,x) for(int i=(x); i<(n); i++)
#define in freopen("in.in","r",stdin)
#define out freopen("out.out","w",stdout)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> P;
const int INF = 0x3f3f3f3f;
const LL LNF = 1e18;
const int maxn = 1e3 + 20;
const int maxm = 1e6 + 10;
const int N = 1e4+10;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int dx[] = {-1,1,0,0,1,1,-1,-1};
const int dy[] = {0,0,1,-1,1,-1,1,-1};
int dir[][3]={ {0,0,1},{0,0,-1},{1,0,0},{-1,0,0},{0,1,0},{0,-1,0} };
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int f[200][200],a,b,z;
void dfs(int x,int y,int step)
{
if(f[x][y]!=0 && step+1>=f[x][y]) return ;
f[x][y]=step+1;
dfs(x,0,step+1);
dfs(0,y,step+1);
dfs(x,b,step+1);
dfs(a,y,step+1);
if(x+y<=a) dfs(x+y,0,step+1);
else dfs(a,x+y-a,step+1);
if(x+y<=b) dfs(0,x+y,step+1);
else dfs(x+y-b,b,step+1);
} int main()
{
while(~scanf("%d%d%d",&a,&b,&z))
{
memset(f,0,sizeof(f));
int ans=INF;
dfs(0,0,0);
for(int i=0;i<=a;i++)
{
if(f[i][z]!=0)
{
if(f[i][z]<ans)
ans=f[i][z];
}
}
for(int i=0;i<=b;i++)
{
if(f[z][i]!=0)
{
if(f[z][i]<ans)
ans=f[z][i];
}
}
if(ans==INF) printf("impossible\n");
else printf("%d\n",ans-1);
}
}

【BFS】:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
int x,y,target;
struct state{
int x,y,step;
}f; queue<state> q;
bool vis[233][233];
int bfs()
{
q.push(f);
vis[f.x][f.y]=1;
while(q.size())
{
f=q.front(); q.pop();
if(f.x==target||f.y==target) return f.step;
if(f.x<x&&vis[x][f.y]==0) //x倒满
{
q.push((state){x,f.y,f.step+1});
vis[x][f.y]=1;
}
if(f.x&&vis[0][f.y]==0) //x倒空
{
q.push((state){0,f.y,f.step+1});
vis[0][f.y]=1;
}
if(f.y<y&&vis[f.x][y]==0) //y倒满
{
q.push((state){f.x,y,f.step+1});
vis[f.x][y]=1;
}
if(f.y&&vis[f.x][0]==0) //y倒空
{
q.push((state){f.x,0,f.step+1});
vis[f.x][0]=1;
}
if(f.x>=y-f.y&&vis[f.x-(y-f.y)][y]==0)//x->y
{
q.push((state){f.x-(y-f.y),y,f.step+1});
vis[f.x-(y-f.y)][y]=1;
}
if(f.x<y-f.y&&vis[0][f.x+f.y]==0)//x->y
{
q.push((state){0,f.x+f.y,f.step+1});
vis[0][f.x+f.y]=1;
}
if(f.y>=x-f.x&&vis[x][f.y-(x-f.x)]==0)//y->x
{
q.push((state){x,f.y-(x-f.x),f.step+1});
vis[x][f.y-(x-f.x)]=1;
}
if(f.y<x-f.x&&vis[f.x+f.y][0]==0)//y->x
{
q.push((state){f.x+f.y,0,f.step+1});
vis[f.x+f.y][0]=1;
}
}
return -1;
} int main()
{
scanf("%d%d%d",&x,&y,&target);
int ans=bfs();
if(ans!=-1) printf("%d",ans);
else printf("impossible");
return 0;
}

CodeVS 1226 倒水问题【DFS/BFS】的更多相关文章

  1. codevs 1226 倒水问题

    1226 倒水问题 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold   题目描述 Description 有两个无刻度标志的水壶,分别可装 x 升和 y 升 ( x, ...

  2. 洛谷P1432 倒水问题(CODEVS.1226)

    To 洛谷.1432 倒水问题 题目背景 In the movie "Die Hard 3", Bruce Willis and Samuel L. Jackson were co ...

  3. 广度优先搜索 cdoevs 1226 倒水问题

    cdoevs 1226 倒水问题  时间限制: 1 s  空间限制: 128000 KB  题目等级 : 黄金 Gold   题目描述 Description 有两个无刻度标志的水壶,分别可装 x 升 ...

  4. DFS/BFS+思维 HDOJ 5325 Crazy Bobo

    题目传送门 /* 题意:给一个树,节点上有权值,问最多能找出多少个点满足在树上是连通的并且按照权值排序后相邻的点 在树上的路径权值都小于这两个点 DFS/BFS+思维:按照权值的大小,从小的到大的连有 ...

  5. 【DFS/BFS】NYOJ-58-最少步数(迷宫最短路径问题)

    [题目链接:NYOJ-58] 经典的搜索问题,想必这题用广搜的会比较多,所以我首先使的也是广搜,但其实深搜同样也是可以的. 不考虑剪枝的话,两种方法实践消耗相同,但是深搜相比广搜内存低一点. 我想,因 ...

  6. ID(dfs+bfs)-hdu-4127-Flood-it!

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4127 题目意思: 给n*n的方格,每个格子有一种颜色(0~5),每次可以选择一种颜色,使得和左上角相 ...

  7. [LeetCode] 130. Surrounded Regions_Medium tag: DFS/BFS

    Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'. A reg ...

  8. HDU 4771 (DFS+BFS)

    Problem Description Harry Potter has some precious. For example, his invisible robe, his wand and hi ...

  9. DFS/BFS视频讲解

    视频链接:https://www.bilibili.com/video/av12019553?share_medium=android&share_source=qq&bbid=XZ7 ...

随机推荐

  1. 【bzoj2006】[NOI2010]超级钢琴 倍增RMQ+STL-堆

    题目描述 小Z是一个小有名气的钢琴家,最近C博士送给了小Z一架超级钢琴,小Z希望能够用这架钢琴创作出世界上最美妙的音乐. 这架超级钢琴可以弹奏出n个音符,编号为1至n.第i个音符的美妙度为Ai,其中A ...

  2. [POJ1784]Huffman's Greed

    题面在这里 题意 给出一棵\(n\)个节点的二叉查找树的中序遍历中每个节点的访问次数\(p[i]\),和相邻两节点\(i\)和\(i+1\)的访问次数\(q[i]\),构造一棵二叉查找树使得\(\su ...

  3. 2018牛客多校第一场 A.Monotonic Matrix

    题意: 给一个n*m的矩阵赋值(0,1,2).使得每个数都不小于它左面和上面的数. 题解: 构建0和1的轮廓线.对于单独的轮廓线,共需要往上走n步,往右走m步.有C(n+m,n)种方式. 两个轮廓线的 ...

  4. Treap 模板

    感觉平衡树也没有以前想的那么玄乎,(其实set超好用的),非旋式Treap挺好理解,和可并堆,二叉搜索树有很大联系 推荐博客:http://memphis.is-programmer.com/post ...

  5. BZOJ2337: [HNOI2011]XOR和路径 期望概率dp 高斯

    这个题让我认识到我以往对于图上期望概率的认识是不完整的,我之前只知道正着退还硬生生的AC做过的所有图,那么现在让我来说一下逆退,一般来说对于概率性的东西都只是正推,因为有了他爸爸才有了他,而对于期望性 ...

  6. 一个JavaScript日期格式化扩展函数

    我们都知道在Java和PHP语言中,有专门用于格式化日期对象的类和函数,例如Java中的DateFormat等等,通过这些类和函数,我们可以方便的将一个日期对象按照格式的要求输出为字符串,例如对于同一 ...

  7. HDU 1059 完全背包

    Dividing Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Su ...

  8. POJ3349 Snowflake Snow Snowflakes (hash

    Snowflake Snow Snowflakes Time Limit: 4000MS   Memory Limit: 65536K Total Submissions: 48624   Accep ...

  9. spring中<bean>中parent标签的使用

    简介:spring 中parent标签是指:某个<bean>的父类.这个类可以覆盖parent的属性, 代码如下: Parent类的代码如下: package com.timo.domai ...

  10. docker compose,link,Odoo

    1.报错: /usr/bin/docker-current: Error response from daemon: driver failed programming external connec ...