|
| 1 | +<h2><a href="https://leetcode.com/problems/ones-and-zeroes">474. Ones and Zeroes</a></h2><h3>Medium</h3><hr><p>You are given an array of binary strings <code>strs</code> and two integers <code>m</code> and <code>n</code>.</p> |
| 2 | + |
| 3 | +<p>Return <em>the size of the largest subset of <code>strs</code> such that there are <strong>at most</strong> </em><code>m</code><em> </em><code>0</code><em>'s and </em><code>n</code><em> </em><code>1</code><em>'s in the subset</em>.</p> |
| 4 | + |
| 5 | +<p>A set <code>x</code> is a <strong>subset</strong> of a set <code>y</code> if all elements of <code>x</code> are also elements of <code>y</code>.</p> |
| 6 | + |
| 7 | +<p> </p> |
| 8 | +<p><strong class="example">Example 1:</strong></p> |
| 9 | + |
| 10 | +<pre> |
| 11 | +<strong>Input:</strong> strs = ["10","0001","111001","1","0"], m = 5, n = 3 |
| 12 | +<strong>Output:</strong> 4 |
| 13 | +<strong>Explanation:</strong> The largest subset with at most 5 0's and 3 1's is {"10", "0001", "1", "0"}, so the answer is 4. |
| 14 | +Other valid but smaller subsets include {"0001", "1"} and {"10", "1", "0"}. |
| 15 | +{"111001"} is an invalid subset because it contains 4 1's, greater than the maximum of 3. |
| 16 | +</pre> |
| 17 | + |
| 18 | +<p><strong class="example">Example 2:</strong></p> |
| 19 | + |
| 20 | +<pre> |
| 21 | +<strong>Input:</strong> strs = ["10","0","1"], m = 1, n = 1 |
| 22 | +<strong>Output:</strong> 2 |
| 23 | +<b>Explanation:</b> The largest subset is {"0", "1"}, so the answer is 2. |
| 24 | +</pre> |
| 25 | + |
| 26 | +<p> </p> |
| 27 | +<p><strong>Constraints:</strong></p> |
| 28 | + |
| 29 | +<ul> |
| 30 | + <li><code>1 <= strs.length <= 600</code></li> |
| 31 | + <li><code>1 <= strs[i].length <= 100</code></li> |
| 32 | + <li><code>strs[i]</code> consists only of digits <code>'0'</code> and <code>'1'</code>.</li> |
| 33 | + <li><code>1 <= m, n <= 100</code></li> |
| 34 | +</ul> |
0 commit comments