程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> M - 非常可樂HDU1495 BFS

M - 非常可樂HDU1495 BFS

編輯:C++入門知識

M - 非常可樂HDU1495 BFS



M - 非常可樂
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit Status Practice HDU 1495

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

//找到狀態,並表示,我是以(s,n,m)為狀態,之間的倒水關系為邊,進行BFS
//#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn=105;
const int inf=200000;
#define lson rt<<1,l,m
#define rson rt<<1|1,m+1,r
#define For(i,n) for(int i=0;i<(n);i++)
templateinline T read(T&x)
{
    char c;
    while((c=getchar())<=32);
    bool ok=false;
    if(c=='-')ok=true,c=getchar();
    for(x=0; c>32; c=getchar())
        x=x*10+c-'0';
    if(ok)x=-x;
    return x;
}
template inline void read_(T&x,T&y)
{
    read(x);
    read(y);
}
template inline void write(T x)
{
    if(x<0)putchar('-'),x=-x;
    if(x<10)putchar(x+'0');
    else write(x/10),putchar(x%10+'0');
}
templateinline void writeln(T x)
{
    write(x);
    putchar('\n');
}
//  -------IO template------
struct node
{
    int s,n,m;
    node(int a,int b,int c)
    {
        s=a;n=b;m=c;
    }
};
int N,M,S;
bool ok(node a)
{
    int cnt=0;
    if(a.s==S/2)
        cnt++;
    if(a.n==S/2)
        cnt++;
    if(a.m==S/2)
        cnt++;
    if(cnt>=2)return true;
    return  false;
}

int vis[maxn][maxn][maxn];
bool flag=0;
void bfs(int s,int n,int m)
{
    queue q;
    q.push(node(s,n,m));
    vis[s][n][m]=1;
    memset(vis,0,sizeof(vis));
    while(!q.empty())
    {
        node tmp=q.front();q.pop();
       // printf("%d %d %d\n",tmp.s,tmp.n,tmp.m);
        if(ok(tmp))
        {
            printf("%d\n",vis[tmp.s][tmp.n][tmp.m]);
            flag=false;
            return ;
        }
        ///s->n
        if(tmp.s>0&&tmp.nm
        if(tmp.s>0&&tmp.ms
        if(tmp.n>0&&tmp.sm
        if(tmp.n>0&&tmp.ms
        if(tmp.s0)
        {
            int t=min(tmp.m,S-tmp.s);
            if(!vis[tmp.s+t][tmp.n][tmp.m-t])
            {
                q.push(node(tmp.s+t,tmp.n,tmp.m-t));
                vis[tmp.s+t][tmp.n][tmp.m-t]=vis[tmp.s][tmp.n][tmp.m]+1;
            }
        }
        ///m->n
        if(tmp.m>0&&tmp.n

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved