mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-14 03:41:41 +08:00
add leetcode problem-cn part6
This commit is contained in:
42
算法题(国内版)/problem (Chinese)/水壶问题 [water-and-jug-problem].html
Normal file
42
算法题(国内版)/problem (Chinese)/水壶问题 [water-and-jug-problem].html
Normal file
@@ -0,0 +1,42 @@
|
||||
<p>有两个水壶,容量分别为 <code>jug1Capacity</code> 和 <code>jug2Capacity</code> 升。水的供应是无限的。确定是否有可能使用这两个壶准确得到 <code>targetCapacity</code> 升。</p>
|
||||
|
||||
<p>如果可以得到 <code>targetCapacity</code> 升水,最后请用以上水壶中的一或两个来盛放取得的 <code>targetCapacity</code> 升水。</p>
|
||||
|
||||
<p>你可以:</p>
|
||||
|
||||
<ul>
|
||||
<li>装满任意一个水壶</li>
|
||||
<li>清空任意一个水壶</li>
|
||||
<li>从一个水壶向另外一个水壶倒水,直到装满或者倒空</li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong> </p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> jug1Capacity = 3, jug2Capacity = 5, targetCapacity = 4
|
||||
<strong>输出:</strong> true
|
||||
<strong>解释</strong>:来自著名的 <a href="https://www.youtube.com/watch?v=BVtQNK_ZUJg"><em>"Die Hard"</em></a></pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> jug1Capacity = 2, jug2Capacity = 6, targetCapacity = 5
|
||||
<strong>输出:</strong> false
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong> jug1Capacity = 1, jug2Capacity = 2, targetCapacity = 3
|
||||
<strong>输出:</strong> true
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>1 <= jug1Capacity, jug2Capacity, targetCapacity <= 10<sup>6</sup></code></li>
|
||||
</ul>
|
Reference in New Issue
Block a user