ZOJ1005 Jugs

简介:
这个题目出的不严谨,至少测试数据太弱了。可以每次先灌满A瓶,也可以每次都先灌满B瓶,反正题目都说了肯定有解,我感觉应该只能让最优解通过测试。

代码1:

复制代码
#include <iostream>
using namespace std;

int main()
{
    int nA,nB,n,rstA,rstB;
    while (cin>>nA>>nB>>n)
    {
        rstA = 0;
        rstB = 0;
        if (nB==n)
        {
            cout<<"fill B"<<endl;
            cout<<"success"<<endl;
            continue;
        }
        if (nA==n)
        {
            cout<<"fill A"<<endl;
            cout<<"pour A B"<<endl;
            cout<<"success"<<endl;
            continue;
        }
        while (rstB!=n)
        {
            if(rstA==0)
            {
                rstA=nA;
                cout<<"fill A"<<endl;
            }
            if(rstB==nB)
            {
                rstB=0;
                cout<<"empty B"<<endl;
            }
            if(rstA>(nB-rstB))
            {//第二个容器中还有空,从第一个容器中取水将其灌满
                rstA-=(nB-rstB);//从第一个容器取水
                rstB=nB;//第二个容器满了
                cout<<"pour A B"<<endl;
            }
            else
            {//第一个容器中的水都倒入第二个
                rstB+=rstA;
                rstA=0;
                cout<<"pour A B"<<endl;
            }
        }
        cout<<"success"<<endl;
    }
    return 0;
}
复制代码
代码2:

复制代码
#include <iostream>
using namespace std;

int main()
{
    int nA,nB,n,rstA,rstB;
    while (cin>>nA>>nB>>n)
    {
        rstA = 0;
        rstB = 0;
        if (nB==n)
        {
            cout<<"fill B"<<endl;
            cout<<"success"<<endl;
            continue;
        }
        if (nA==n)
        {
            cout<<"fill A"<<endl;
            cout<<"pour A B"<<endl;
            cout<<"success"<<endl;
            continue;
        }
        while (rstB!=n)
        {
            if(rstB==0)
            {
                rstB=nB;
                cout<<"fill B"<<endl;
            }
            if(rstA==nA)
            {
                rstA=0;
                cout<<"empty A"<<endl;
            }
            if(rstB>(nA-rstA))
            {//第一个容器中还有空,从第二个容器中取水将其灌满
                rstB-=(nA-rstA);//从第二个容器取水
                rstA=nA;//第一个容器满了
                cout<<"pour B A"<<endl;
            }
            else
            {//第二个容器中的水都倒入第一个
                rstA+=rstB;
                rstB=0;
                cout<<"pour B A"<<endl;
            }
        }
        cout<<"success"<<endl;
    }
    return 0;
}
复制代码




本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2008/09/21/1295472.html,如需转载请自行联系原作者
目录
相关文章
|
人工智能 Go
ZOJ 3635 Cinema in Akiba
题意:一群人到电影院看电影,该电影的门票计算比较特殊,如:甲第一个拿到1号门票则位置为1,乙第二个拿票,票号也是1,则位置为2,因为1号位置已经被甲占了,乙的位置为剩下位置中的1号位置。
122 0
|
人工智能 BI 应用服务中间件
|
机器学习/深度学习
|
Java 测试技术 C++
HDU 3783 ZOJ
ZOJ Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2779    Accepted Submission(s): 1840 Problem Description 读入一个字符串,字符串中包含ZOJ三个字符,个数不一定相等,按ZOJ的顺序输出,当某个字符用完时,剩下的仍然按照ZOJ的顺序输出。
1111 0

热门文章

最新文章