You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solution/2600-2699/2643.Row With Maximum Ones/README_EN.md
+38-25
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ tags:
31
31
<pre>
32
32
<strong>Input:</strong> mat = [[0,1],[1,0]]
33
33
<strong>Output:</strong> [0,1]
34
-
<strong>Explanation:</strong> Both rows have the same number of 1's. So we return the index of the smaller row, 0, and the maximum count of ones (1<code>)</code>. So, the answer is [0,1].
34
+
<strong>Explanation:</strong> Both rows have the same number of 1's. So we return the index of the smaller row, 0, and the maximum count of ones (1<code>)</code>. So, the answer is [0,1].
35
35
</pre>
36
36
37
37
<p><strongclass="example">Example 2:</strong></p>
@@ -68,9 +68,16 @@ tags:
68
68
69
69
### Solution 1: Simulation
70
70
71
-
We directly traverse the matrix, count the number of $1$s in each row, and update the maximum value and the corresponding row index. Note that if the number of $1$s in the current row is equal to the maximum value, we need to choose the row with the smaller index.
71
+
We initialize an array $\textit{ans} = [0, 0]$ to store the index of the row with the most $1$s and the count of $1$s.
72
72
73
-
The time complexity is $O(m \times n)$, where $m$ and $n$ are the number of rows and columns of the matrix, respectively. The space complexity is $O(1)$.
73
+
Then, we iterate through each row of the matrix:
74
+
75
+
- Compute the number of $1$s in the current row, denoted as $\textit{cnt}$ (since the matrix contains only $0$s and $1$s, we can directly sum up the row).
76
+
- If $\textit{ans}[1] < \textit{cnt}$, update $\textit{ans} = [i, \textit{cnt}]$.
77
+
78
+
After finishing the iteration, we return $\textit{ans}$.
79
+
80
+
The time complexity is $O(m \times n)$, where $m$ and $n$ are the number of rows and columns in the matrix, respectively. The space complexity is $O(1)$.
0 commit comments