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.
Example 1: (From the famous "Die Hard" example) Input: x = 3, y = 5, z = 4
Output: True
Example 2: Input: x = 2, y = 6, z = 5
Output: False

参考:https://discuss.leetcode.com/topic/49238/math-solution-java-solution

The basic idea is to use the property of Bézout's identity and check if z is a multiple of GCD(x, y)

Quote from wiki:

Bézout's identity (also called Bézout's lemma) is a theorem in the elementary theory of numbers:

let a and b be nonzero integers and let d be their greatest common divisor. Then there exist integers x
and y such that ax+by=d

In addition, the greatest common divisor d is the smallest positive integer that can be written as ax + by

every integer of the form ax + by is a multiple of the greatest common divisor d.

If x or y is negative this means we are emptying a jug of a or b gallons respectively.

Similarly if x or y is positive this means we are filling a jug of a or b gallons respectively.

a = 4, b = 6, z = 8.

GCD(4, 6) = 2

8 is multiple of 2

so this input is valid and we have:

-1 * 4 + 6 * 2 = 8

In this case, there is a solution obtained by filling the 6 gallon jug twice and emptying the 4 gallon jug once. (Solution. Fill the 6 gallon jug and empty 4 gallons to the 4 gallon jug. Empty the 4 gallon jug. Now empty the remaining two gallons from the 6 gallon jug to the 4 gallon jug. Next refill the 6 gallon jug. This gives 8 gallons in the end)

 public class Solution {
public boolean canMeasureWater(int x, int y, int z) {
if (z==x || z==y) return true; //deal with [1, 0, 0], [0, 0, 0] these true cases
if (z > x + y) return false;
return z % GCD(x, y) == 0;
} public int GCD(int x, int y) {
while (y != 0) {
int temp = y;
y = x%y;
x = temp;
}
return x;
}
}

最新文章

  1. x01.os.23: 制作 linux LiveCD
  2. STL-<queue>-priority queue的使用
  3. swift学习笔记之-方法部分
  4. 网络流 POJ2112
  5. .NET微信公众号开发-1.0初始微信公众号
  6. 禁止输入中文 与 禁止输入数字在phonegap api环境效果
  7. 一个简单的数据查询显示jsp
  8. 递推DP URAL 1017 Staircases
  9. Python:常见错误集锦(持续更新ing)
  10. 新手讲树:证明任意二叉树度为零的节点n0,永远比度为2的节点n2多1个
  11. Codeforces 474 F. Ant colony
  12. MSDTC启用——分布式事务
  13. JAVA通过继承Thread来创建线程
  14. Webstorm的一些常用快捷键
  15. fastjson序列化出现StackOverflowError
  16. 学习笔记DL005:线性相关、生成子空间,范数,特殊类型矩阵、向量
  17. Laravel - Union + Paginate at the same time? and another problem----1222 The used SELECT statements have a different number of columns (SQL: (select count(*) as aggregate from
  18. Hibernate(4)简单的HelloWorld
  19. ArrayList详细
  20. 微信小程序 - 分包加载(分包使用)

热门文章

  1. [转]漫谈数据中心CLOS网络架构
  2. Natural Language Processing Computational Linguistics
  3. Java内存管理和垃圾回收
  4. common.js
  5. spring容器IOC创建对象<二>
  6. ASP.Net网站程序在编译发布部署后的后期修改
  7. Bootstrap 路径分页标签和徽章组件
  8. Sandbox 文件存放规则
  9. Spark学习笔记(一)
  10. lua环境安装 转