博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ1005 Jugs
阅读量:6319 次
发布时间:2019-06-22

本文共 1454 字,大约阅读时间需要 4 分钟。

这个题目出的不严谨,至少测试数据太弱了。可以每次先灌满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,如需转载请自行联系原作者
你可能感兴趣的文章
python 中的列表解析和生成表达式 - 转
查看>>
jQuery数组的遍历 function的加载
查看>>
杂记~~~MFC SOCKET
查看>>
AWK文本处理工具(Linux)
查看>>
完成评论功能
查看>>
VC 输入法注入源码
查看>>
BinaryTree I
查看>>
IE6-IE9兼容性问题列表及解决办法_补充之四:HTC (Html Components) 功能逐渐被IE抛弃...
查看>>
Verilog与C/C++的一些区别
查看>>
DIV焦点事件详解 --【focus和tabIndex】
查看>>
vim php代码规范
查看>>
数据结构与算法:二分查找
查看>>
Redis实现广告缓存、并完善缓存击穿
查看>>
CSS外边距折叠引发的问题
查看>>
jquery-datatables 销毁重新渲染
查看>>
Centos7如何开启端口
查看>>
什么是区块链共识?
查看>>
到底什么时候该使用MQ
查看>>
EOSIO 指南(创建测试帐户)
查看>>
Angular 依赖注入
查看>>