HDU 1495 非常可乐 BFS

题目大意:中文题不说了。

题目思路:我有同学用GCD数论写出来的代码很简洁,但是很抱歉,数论蒟蒻,我觉得比赛的时候我没办法推出。如果用BFS的话思路很简单的,就是6方向广搜,只不过稍微麻烦点。具体看代码吧。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<queue>
#include<algorithm>
#include<iostream>
#define MAX 115
using namespace std;

int vis[MAX][MAX][MAX],a,b,c,k;

bool check(int s,int n,int m)
{
    if(!vis[s][n][m] && s<=c && n<=a && m<=b && s>=0 && n>=0 && m>=0)
        return true;
    return false;
}

struct node
{
    int s,n,m,step;
};

int BFS()
{
    node now,next;
    now.s=c;
    now.n=0;
    now.m=0;
    now.step=0;
    queue<node>Q;
    Q.push(now);
    vis[c][0][0]=1;
    while(!Q.empty())
    {
        now=Q.front();
        Q.pop();
        if(now.s==k && now.m==k)
        {
            return now.step;
        }
        for(int i=0;i<6;i++)
        {
            if(i==0)//s->n
            {
                if(now.s==0)
                    continue;
                if(now.s >= (a-now.n))
                {
                    next.s=now.s-(a-now.n);
                    next.n=a;
                }

                else
                {
                    next.s=0;
                    next.n=now.n+now.s;
                }
                next.m=now.m;
            }

            else if(i==1)//n->m
            {
                if(now.n==0)
                    continue;
                if(now.n >= (b-now.m))
                {
                    next.n=now.n-(b-now.m);
                    next.m=b;
                }

                else
                {
                    next.n=0;
                    next.m=now.m+now.n;
                }
                next.s=now.s;
            }

            else if(i==2)//m->n
            {
                if(now.m==0)
                    continue;
                if(now.m >= (a-now.n))
                {
                    next.m=now.m-(a-now.n);
                    next.n=a;
                }

                else
                {
                    next.m=0;
                    next.n=now.n+now.m;
                }
                next.s=now.s;
            }

            else if(i==3)//s->m
            {
                if(now.s==0)
                    continue;
                if(now.s >= (b-now.m))
                {
                    next.s=now.s-(b-now.m);
                    next.m=b;
                }

                else
                {
                    next.s=0;
                    next.m=now.m+now.s;
                }
                next.n=now.n;
            }

            else if(i==4)//n->s
            {
                if(now.n==0)
                    continue;
                if(now.n >= (c-now.s))
                {
                    next.n=now.n-(c-now.s);
                    next.s=c;
                }

                else
                {
                    next.n=0;
                    next.s=now.s+now.n;
                }
                next.m=now.m;
            }

            else if(i==5)//m->s
            {
                if(now.m==0)
                    continue;
                if(now.m >= (c-now.s))
                {
                    next.m=now.m-(c-now.s);
                    next.s=c;
                }

                else
                {
                    next.m=0;
                    next.s=now.s+now.m;
                }
                next.n=now.n;
            }

            if(check(next.s,next.n,next.m))
            {
                vis[next.s][next.n][next.m]=1;
                next.step=now.step+1;
                Q.push(next);
            }
        }
    }
    return -1;
}

int main()
{
    while(scanf("%d%d%d",&c,&a,&b),a+b+c)
    {
        if(a > b)
            swap(a,b);
        if(c%2!=0)
        {
            printf("NO\n");
            continue;
        }

        else
        {
            k=c/2;
            memset(vis,0,sizeof(vis));
            int ans=BFS();
            if(ans==-1)
                printf("NO\n");
            else
                printf("%d\n",ans);
        }
    }
    return 0;
}

时间: 2024-10-24 11:10:58

HDU 1495 非常可乐 BFS的相关文章

HDU 1495——非常可乐( BFS )

非常可乐 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4663    Accepted Submission(s): 1868 Problem Description 大家一定觉的运动以后喝可乐是一件很惬意的事情,但是seeyou却不这么认为.因为每次当seeyou买了可乐以后,阿牛就要求和seeyou一起分享这一瓶可乐,而且一定要

HDU 1495 非常可乐 BFS 搜索

http://acm.hdu.edu.cn/showproblem.php?pid=1495 题目就不说了, 说说思路! 倒可乐 无非有6种情况: 1. S 向 M 倒 2. S 向 N 倒 3. N 向 M 倒 4. N 向 S 倒 5. M 向 S 倒 6. M 向 N 倒 根据上述的六种情况来进行模拟, 每次模拟的结果都放进队列里面. 注意: 还要用到标记数组,防止数据重复进入队列导致爆栈. 1 #include<stdio.h> 2 #include<stdlib.h> 3

HDU 1495 非常可乐 bfs 难度:1

http://acm.hdu.edu.cn/showproblem.php?pid=1495 第三个杯子的盛水量可由前两个杯子得到,而前两个杯子状态总数在100*100以内,穷举可实现 #include <cstdio> #include <cstring> #include <queue> using namespace std; const int mxind=101; const int maxn=mxind*mxind; int n,m,s; int dp[ma

HDU 1495 非常可乐(BFS 倒水问题)

题意  将体积为s的可乐  利用容积分别为n和m的两个杯子平均分为两份  至少需要倒多少次可乐 可以把容器s,n,m中装的可乐量看成一种状态 容器都是没有刻度的  所以每次倒可乐要么把自己倒完 要么把对方倒满 每种状态可以通过一次倒水到达哪些状态  于是可以通过bfs判断到达每种状态需要倒多少次 3个容器中有一个装的可乐为s/2的状态就是答案了  s是奇数时明显不可能平分的  可以直接忽略 #include <cstdio> #include <cstring> using nam

HDU 1495 非常可乐 BFS搜索

题意:有个为三个杯子(杯子没有刻度),体积为s,n,m,s=m+n, 刚开始只有体积为s的杯子装满可乐,可以互相倒,问你最少的次数使可乐均分,如果没有结果,输出-1; 分析:直接互相倒就完了,BFS模拟 注:写的很丑 #include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <cmath> #include <set> #

BFS(倒水问题) HDU 1495 非常可乐

题目传送门 1 /* 2 BFS:倒水问题,当C是奇数时无解.一共有六种情况,只要条件符合就入队,我在当该状态vised时写了continue 3 结果找了半天才发现bug,泪流满面....(网上找份好看的题解都难啊) 4 */ 5 /************************************************ 6 Author :Running_Time 7 Created Time :2015-8-4 10:54:16 8 File Name :HDOJ_1495.cpp

HDU 1495 非常可乐 (BFS)

 问题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1495 题目大意:一个瓶子容积s,两个杯子容积分别n,m,并且都没有刻度(不能比对噢!).相互倒水,求平分的他们的最少倒水次数. 思路:暴力搜索吧.并且求最少,(即最优解),所以上BFS: 思考:状态,转移过程,怎么剪纸. 惨痛的debug,我不解释了. 源代码: #include<iostream> #include<cstdio> #include<queue> #

HDU 1495 非常可乐(数论,BFS)

非常可乐 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 14153    Accepted Submission(s): 5653 Problem Description 大家一定觉的运动以后喝可乐是一件很惬意的事情,但是seeyou却不这么认为.因为每次当seeyou买了可乐以后,阿牛就要求和seeyou一起分享这一瓶可乐,而且一定

HDU 1495 非常可乐(BFS倒水问题)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1495 题目大意:只有两个杯子,它们的容量分别是N 毫升和M 毫升 可乐的体积为S (S<101)毫升 (正好装满一瓶) ,它们三个之间可以相互倒可乐 (都是没有刻度的,且 S==N+M,101>S>0,N>0,M>0) .如果能将可乐平分则输出倒可乐的最少的次数,如果不能输出"NO". 解题思路:题意很坑看了半天,就是要有两个杯子里的可乐都为S/2,S为奇数肯