uva 10603 - Fill bfs

简介:

10603 - Fill

 

      经典的倒水问题,求最接近的可得到的水量d‘ d'<=d 和需要倒的水量

      因为a,b,c最大只有200,所以总的状态只有8,000,000,而又因为总水量恒定,所以状态量只有40,000,bfs遍历即可。

 

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <queue>
#define INF 1E9
using namespace std;
struct node
{
    int a[3],p;
};
int cost[202][202];
int Min,up,push;
int A[3],d;
node now,next;
queue<node> q;
int main()
{
    int T,i,j,k,t,*a;
    bool flag=1;
    scanf("%d",&T);
    while(T--)
    {
        while(!q.empty())q.pop();
        memset(cost,0,sizeof(cost));
        flag=1;Min=INF;
        scanf("%d%d%d%d",&A[0],&A[1],&A[2],&d);
        if(A[2]==d||d==0){printf("0 %d\n",d);continue;}
        now.a[0]=0;now.a[1]=0;now.a[2]=A[2];
        q.push(now);cost[0][0]=1;
        while(!q.empty()&&flag)
        {
            now=q.front();q.pop();
            a=now.a;
            for(i=0;i<3&&flag;i++)//倒出杯
            {
                if(now.a[i]==0)continue;
                for(j=0;j<3&&flag;j++)//接受杯,分别是6种倒水情况
                {
                    if(i==j||a[j]==A[j])continue;
                    next.a[i]=max(a[i]-(A[j]-a[j]),0);
                    next.a[j]=a[j]+a[i]-next.a[i];
                    next.a[3-i-j]=a[3-i-j];
                    next.p=cost[now.a[0]][now.a[1]]+a[i]-next.a[i];
                    if(cost[next.a[0]][next.a[1]])continue;
                    for(k=0;k<3;k++)
                    {
                        t=d-next.a[k];
                        if(t<Min&&t>=0){Min=t;push=next.p;up=next.a[k];}
                        if(Min==0){flag=0;break;}
                    }
                    cost[next.a[0]][next.a[1]]=next.p;
                    q.push(next);
                }
            }
        }
        printf("%d %d\n",push-1,up);
    }
}


 

目录
相关文章
hdoj 1028/poj 2704 Pascal's Travels(记忆化搜索||dp)
有个小球,只能向右边或下边滚动,而且它下一步滚动的步数是它在当前点上的数字,如果是0表示进入一个死胡同。求它从左上角到右下角到路径数目。 注意, 题目给了提示了,要用64位的整数。
46 0
|
机器学习/深度学习 测试技术
UVA11175 有向图D和E From D to E and Back
UVA11175 有向图D和E From D to E and Back
UVA11175 有向图D和E From D to E and Back
UPC Graph (最小生成树 || 并查集+二分)
UPC Graph (最小生成树 || 并查集+二分)
101 0
LeetCode 118:杨辉三角 II Pascal's Triangle II
公众号:爱写bug(ID:icodebugs)作者:爱写bug 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。 Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the row index starts from 0. 在杨辉三角中,每个数是它左上方和右上方的数的和。
927 0
Leetcode 118:Pascal's Triangle 杨辉三角
118:Pascal's Triangle 杨辉三角 Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. 给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。
1004 0