leetcode365. Water and Jug Problem

来源:互联网 发布:锻炼身体的软件app 编辑:程序博客网 时间:2024/05/21 11:05

You are given two jugs with capacities x and y litres. There is an infinite amount of water supply available. You need to determine whether it is possible to measure exactly z litres using these two jugs.
If z liters of water is measurable, you must have z liters of water contained within one or both buckets by the end.
Operations allowed:
Fill any of the jugs completely with water.
Empty any of the jugs.
Pour water from one jug into another till the other jug is completely full or the first jug itself is empty.

class Solution(object):    def canMeasureWater(self, x, y, z):        """        :type x: int        :type y: int        :type z: int        :rtype: bool        """        if z==0:            return True        if x==0 or y==0:            return z==min(x,y)        if x > y: x, y = y, x        return z % self.gcd(x, y) == 0 and z <= (y+x)    def gcd(self, a, b):        if a == 0: return b        return self.gcd(b % a, a)
0 0