|
64 | 64 |
|
65 | 65 | <!-- 这里可写通用的实现逻辑 -->
|
66 | 66 |
|
| 67 | +**方法一:模拟** |
| 68 | + |
| 69 | +遍历矩阵 `mat`,先统计每一行,每一列中 `1` 的个数,分别记录在 `r` 和 `c` 数组中。 |
| 70 | + |
| 71 | +然后再遍历矩阵 `mat`,如果 `mat[i][j] == 1` 且 `row[i] == 1` 且 `col[j] == 1`,则 $(i, j)$ 是特殊位置。 |
| 72 | + |
| 73 | +时间复杂度 $O(m\times n)$,空间复杂度 $O(m+n)$。其中 $m$, $n$ 分别是矩阵 `mat` 的行数和列数。 |
| 74 | + |
67 | 75 | <!-- tabs:start -->
|
68 | 76 |
|
69 | 77 | ### **Python3**
|
70 | 78 |
|
71 | 79 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
72 | 80 |
|
73 | 81 | ```python
|
74 |
| - |
| 82 | +class Solution: |
| 83 | + def numSpecial(self, mat: List[List[int]]) -> int: |
| 84 | + m, n = len(mat), len(mat[0]) |
| 85 | + r = [0] * m |
| 86 | + c = [0] * n |
| 87 | + for i, row in enumerate(mat): |
| 88 | + for j, v in enumerate(row): |
| 89 | + r[i] += v |
| 90 | + c[j] += v |
| 91 | + ans = 0 |
| 92 | + for i in range(m): |
| 93 | + for j in range(n): |
| 94 | + if mat[i][j] == 1 and r[i] == 1 and c[j] == 1: |
| 95 | + ans += 1 |
| 96 | + return ans |
75 | 97 | ```
|
76 | 98 |
|
77 | 99 | ### **Java**
|
78 | 100 |
|
79 | 101 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
80 | 102 |
|
81 | 103 | ```java
|
| 104 | +class Solution { |
| 105 | + public int numSpecial(int[][] mat) { |
| 106 | + int m = mat.length, n = mat[0].length; |
| 107 | + int[] r = new int[m]; |
| 108 | + int[] c = new int[n]; |
| 109 | + for (int i = 0; i < m; ++i) { |
| 110 | + for (int j = 0; j < n; ++j) { |
| 111 | + r[i] += mat[i][j]; |
| 112 | + c[j] += mat[i][j]; |
| 113 | + } |
| 114 | + } |
| 115 | + int ans = 0; |
| 116 | + for (int i = 0; i < m; ++i) { |
| 117 | + for (int j = 0; j < n; ++j) { |
| 118 | + if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) { |
| 119 | + ++ans; |
| 120 | + } |
| 121 | + } |
| 122 | + } |
| 123 | + return ans; |
| 124 | + } |
| 125 | +} |
| 126 | +``` |
| 127 | + |
| 128 | +### **C++** |
| 129 | + |
| 130 | +```cpp |
| 131 | +class Solution { |
| 132 | +public: |
| 133 | + int numSpecial(vector<vector<int>>& mat) { |
| 134 | + int m = mat.size(), n = mat[0].size(); |
| 135 | + vector<int> r(m), c(n); |
| 136 | + for (int i = 0; i < m; ++i) { |
| 137 | + for (int j = 0; j < n; ++j) { |
| 138 | + r[i] += mat[i][j]; |
| 139 | + c[j] += mat[i][j]; |
| 140 | + } |
| 141 | + } |
| 142 | + int ans = 0; |
| 143 | + for (int i = 0; i < m; ++i) { |
| 144 | + for (int j = 0; j < n; ++j) { |
| 145 | + if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) { |
| 146 | + ++ans; |
| 147 | + } |
| 148 | + } |
| 149 | + } |
| 150 | + return ans; |
| 151 | + } |
| 152 | +}; |
| 153 | +``` |
82 | 154 |
|
| 155 | +### **Go** |
| 156 | +
|
| 157 | +```go |
| 158 | +func numSpecial(mat [][]int) int { |
| 159 | + m, n := len(mat), len(mat[0]) |
| 160 | + r, c := make([]int, m), make([]int, n) |
| 161 | + for i, row := range mat { |
| 162 | + for j, v := range row { |
| 163 | + r[i] += v |
| 164 | + c[j] += v |
| 165 | + } |
| 166 | + } |
| 167 | + ans := 0 |
| 168 | + for i, x := range r { |
| 169 | + for j, y := range c { |
| 170 | + if mat[i][j] == 1 && x == 1 && y == 1 { |
| 171 | + ans++ |
| 172 | + } |
| 173 | + } |
| 174 | + } |
| 175 | + return ans |
| 176 | +} |
83 | 177 | ```
|
84 | 178 |
|
85 | 179 | ### **...**
|
|
0 commit comments