KY261 Jugs

KY261 Jugs

题目地址

相对素数:不能被所有给定的整数(除了0)整除的数

题目描述:

In the movie "Die Hard 3", Bruce Willis and Samuel L. Jackson were confronted with the following puzzle. They were given a 3-gallon jug and a 5-gallon jug and were asked to fill the 5-gallon jug with exactly 4 gallons. This problem generalizes that puzzle.

    You have two jugs, A and B, and an infinite supply of water. There are three types of actions that you can use: (1) you can fill a jug, (2) you can empty a jug, and (3) you can pour from one jug to the other. Pouring from one jug to the other stops when the first jug is empty or the second jug is full, whichever comes first. For example, if A has 5 gallons and B has 6 gallons and a capacity of 8, then pouring from A to B leaves B full and 3 gallons in A.

    A problem is given by a triple (Ca,Cb,N), where Ca and Cb are the capacities of the jugs A and B, respectively, and N is the goal. A solution is a sequence of steps that leaves exactly N gallons in jug B. The possible steps are

    fill A 
    fill B 
    empty A 
    empty B 
    pour A B 
    pour B A 
    success

    where "pour A B" means "pour the contents of jug A into jug B", and "success" means that the goal has been accomplished.

    You may assume that the input you are given does have a solution.

输入:

Input to your program consists of a series of input lines each defining one puzzle. Input for each puzzle is a single line of three positive integers: Ca, Cb, and N. Ca and Cb are the capacities of jugs A and B, and N is the goal. You can assume 0 < Ca <= Cb and N <= Cb <=1000 and that A and B are relatively prime to one another.

输出:

Output from your program will consist of a series of instructions from the list of the potential output lines which will result in either of the jugs containing exactly N gallons of water. The last line of output for each puzzle should be the line "success". Output lines start in column 1 and there should be no empty lines nor any trailing spaces.

分析:
A B 两个罐子,无限水,求得到指定体积水的方法步骤

思路:
显然,可以倒出的水体积是:A B 的最大公因数的倍数
Step1:如果当前A满了,清空A
Step2:如果当前B是空,倒满B
Step3:把B的水倒入A(假定A体积小于等于B体积)
Step4:如果当前A有水,但是不满,尽可能把B中水往A里面倒
不断循环Step1~Step4,直到A==N || B == N 的时候,就结束

代码:

#include<iostream>
#include<string>
#include<vector>


using namespace std;


int main(){
    int ca,cb,n;
    while (cin>>ca>>cb>>n)
    {
            //初始化罐子内水的体积
        int a=0,b=0;
        while (!(a==n||b==n||a+b==n))
        {
            if(a==ca){
                //A满了,倒空
                a=0;
                cout<<"empty A"<<endl;
            }else if(b==0){
                //B空了,倒满
                b=cb;
                cout<<"fill B"<<endl;
            }else{
                //A没满,B没空,持续性的将B倒入A
                //B中的水:要么可以一次性倒满A,要么不可以,要考虑到A中有水但不满的情况
                if(a+b<=ca){
                    a=a+b;
                    b=0;
                }else{
                    
                    b=b-(ca-a);
                    a=ca;
                }
                cout<<"pour B A"<<endl;   
            }
        }
        cout<<"success"<<endl;     
    }
    
}

问题:
本算法只考虑了从B往A倒水的情况,实际上还可以从A往B倒水

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

光头强12138

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值