HDU ACM 1495 非常可乐(广搜BFS)

非常可乐

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 42   Accepted Submission(s) : 21

Font: Times New Roman | Verdana | Georgia

Font Size: ← →

Problem Description

大家一定觉的运动以后喝可乐是一件很惬意的事情,但是seeyou却不这么认为。因为每次当seeyou买了可乐以后,阿牛就要求和seeyou一起分享这一瓶可乐,而且一定要喝的和seeyou一样多。但seeyou的手中只有两个杯子,它们的容量分别是N 毫升和M 毫升 可乐的体积为S (S<101)毫升 (正好装满一瓶) ,它们三个之间可以相互倒可乐 (都是没有刻度的,且 S==N+M,101>S>0,N>0,M>0) 。聪明的ACMER你们说他们能平分吗?如果能请输出倒可乐的最少的次数,如果不能输出"NO"。

Input

三个整数 : S 可乐的体积 , N 和 M是两个杯子的容量,以"0 0 0"结束。

Output

如果能平分的话请输出最少要倒的次数,否则输出"NO"。

Sample Input

7 4 3
4 1 3
0 0 0

Sample Output

NO
3

Author

seeyou

Source

“2006校园文化活动月”之“校庆杯”大学生程序设计竞赛暨杭州电子科技大学第四届大学生程序设计竞赛

#include <iostream>
#include<cstdio>
#include<queue>
#include<cstring>
using namespace std;
struct node
{
    int a,b,c,av,bv,cv,step;
};
int ss,n,m,ans;
int f[102][102][102];
int ok(int a,int b,int c)
{
    if (a==b && c==0) return 1;
    if (b==c && a==0) return 1;
    if (a==c && b==0) return 1;
    return 0;
}
void pour(int* a,int* b,int* av,int* bv,int* step)
{
    if (*a>0)
        {

            if (*a>=*bv-*b)
            {
                *a=*a-(*bv-*b);
                *b=*bv;
                *step=*step+1;
            } else
            {
                *b=*b+*a;
                *a=0;
                *step=*step+1;
            }
        }
    return;
}
int bfs()
{
    node p;
    queue<node> s;
    p.a=ss;
    p.b=0;
    p.c=0;
    p.av=ss;
    p.bv=n;
    p.cv=m;
    p.step=0;
    s.push(p);
    while(!s.empty())
    {
        node q=s.front();
        s.pop();
        //a->b
        p=q;
        pour(&p.a,&p.b,&p.av,&p.bv,&p.step);
        if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
       //a->c
       p=q;
       pour(&p.a,&p.c,&p.av,&p.cv,&p.step);
       if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
      //b->c
       p=q;
        pour(&p.b,&p.c,&p.bv,&p.cv,&p.step);
        if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
       //b->a
        p=q;
        pour(&p.b,&p.a,&p.bv,&p.av,&p.step);
        if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
       //c->a
        p=q;
        pour(&p.c,&p.a,&p.cv,&p.av,&p.step);
        if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
        //c->b
        p=q;
        pour(&p.c,&p.b,&p.cv,&p.bv,&p.step);
        if(!f[p.a][p.b][p.c])
                {
                    s.push(p);
                    f[p.a][p.b][p.c]=1;
                }
                if(ok(p.a,p.b,p.c)) return p.step;
    }
   return -1;
}
int main()
{

    while(~scanf("%d%d%d",&ss,&n,&m))
    {
        if(ss==0 && n==0 && m==0) break;
        if (ss%2!=0)
        {
            printf("NO\n");
            continue;
        }
        memset(f,0,sizeof(f));
        ans=bfs();
        if (ans>0) printf("%d\n",ans);
            else printf("NO\n");
    }
    return 0;
}
原文地址:https://www.cnblogs.com/stepping/p/5667513.html