# 474. Ones and Zeroes - LeetCode Best Practices Visit original link: [474. Ones and Zeroes - LeetCode Best Practices](https://leetcoder.net/en/leetcode/474-ones-and-zeroes) for a better experience! LeetCode link: [474. Ones and Zeroes](https://leetcode.com/problems/ones-and-zeroes), difficulty: **Medium**. ## LeetCode description of "474. Ones and Zeroes" You are given an array of binary strings `strs` and two integers `m` and `n`. Return the size of the largest subset of `strs` such that there are **at most** `m` `0`'s and `n` `1`'s in the subset. A set `x` is a **subset** of a set `y` if all elements of `x` are also elements of `y`. ### [Example 1] **Input**: `strs = ["10","0001","111001","1","0"], m = 5, n = 3` **Output**: `4` **Explanation**:
The largest subset with at most 5 0's and 3 1's is {"10", "0001", "1", "0"}, so the answer is 4.
Other valid but smaller subsets include {"0001", "1"} and {"10", "1", "0"}.
{"111001"} is an invalid subset because it contains 4 1's, greater than the maximum of 3.
The largest subset is {"0", "1"}, so the answer is 2.
### [Constraints] - `1 <= strs.length <= 600` - `1 <= strs[i].length <= 100` - `'strs[i]' consists only of digits '0' and '1'` - `1 <= m, n <= 100` ## Intuition This question is difficult. It is recommended to complete a simple question of the same type first [416. Partition Equal Subset Sum](416-partition-equal-subset-sum.md). - After completing 416, you will find that this question requires solving the `0/1 Knapsack Problem` in two dimensions. - The solution is to first solve the problem in one dimension and then expand it to two dimensions. - It is no need to draw a grid that considers both dimensions together, that's too complicated. Let's first **only** consider the quantity limit of `0`. ## Steps 1. Determine the **meaning** of the `dp[j]` - Since we are only considering the zero count constraint for now, we can use a one-dimensional `dp` array. - `items` is `strs`, `backpack` is `max_zero_count`. - `dp[j]` represents the maximum number of strings that can be selected with at most `j` zeros. - `dp[j]` is an integer. 2. Determine the `dp` array's initial value - Use an example, example 1: `Input: strs = ["10","0001","111001","1","0"], m = 5, n = 3`. - After initialization: ```python max_zero_count = m dp = [0] * (max_zero_count + 1) ``` - `dp[0] = 0`, indicating that with no zeros, we can select 0 strings. - `dp[j] = 0` as the initial value because we will use `max` to increase them later. 3. According to an example, fill in the `dp` grid data "in order". - Let's analyze the example step by step: ``` # Initial state # 0 1 2 3 4 5 # 0 0 0 0 0 0 # After processing "10" (1 zero) # 0 1 2 3 4 5 # 0 1 1 1 1 1 # After processing "0001" (3 zeros) # 0 1 2 3 4 5 # 0 1 1 1 2 2 # After processing "111001" (2 zeros) # 0 1 2 3 4 5 # 0 1 1 2 2 2 # After processing "1" (0 zeros) # 0 1 2 3 4 5 # 0 2 2 3 3 3 # After processing "0" (1 zero) # 0 1 2 3 4 5 # 0 2 3 3 4 4 ``` 4. According to the `dp` grid data, derive the "recursive formula". ```cpp dp[j] = max(dp[j], dp[j - zero_count] + 1) ``` 5. Write a program and print the `dp` array. If it is not as expected, adjust it. - The code that only considers the quantity limit of `0` is: ```python class Solution: def findMaxForm(self, strs: List[str], max_zero_count: int, n: int) -> int: dp = [0] * (max_zero_count + 1) for string in strs: zero_count = count_zero(string) for j in range(len(dp) - 1, zero_count - 1, -1): # must iterate in reverse order! dp[j] = max(dp[j], dp[j - zero_count] + 1) return dp[-1] def count_zero(string): zero_count = 0 for bit in string: if bit == '0': zero_count += 1 return zero_count ``` #### Now, you can consider another dimension: the quantity limit of `1`. It should be handled similarly to `0` but in another dimension. Please see the complete code below. ## Complexity - Time complexity: `O(N * M * Len)`. - Space complexity: `O(N * M)`. ## Python ```python class Solution: def findMaxForm(self, strs: List[str], max_zero_count: int, max_one_count: int) -> int: dp = [[0] * (max_one_count + 1) for _ in range(max_zero_count + 1)] for string in strs: zero_count, one_count = count_zero_one(string) for i in range(len(dp) - 1, zero_count - 1, -1): for j in range(len(dp[0]) - 1, one_count - 1, -1): dp[i][j] = max(dp[i][j], dp[i - zero_count][j - one_count] + 1) return dp[-1][-1] def count_zero_one(string): zero_count = 0 one_count = 0 for bit in string: if bit == '0': zero_count += 1 else: one_count += 1 return zero_count, one_count ``` ## C++ ```cpp class Solution { public: int findMaxForm(vector