Skip to content

Commit 6e6f07f

Browse files
committed
feat: add solutions to lc problem: No.1582
No.1582.Special Positions in a Binary Matrix
1 parent a72c20a commit 6e6f07f

File tree

8 files changed

+266
-20
lines changed

8 files changed

+266
-20
lines changed

solution/1500-1599/1582.Special Positions in a Binary Matrix/README.md

+95-1
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,116 @@
6464

6565
<!-- 这里可写通用的实现逻辑 -->
6666

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+
6775
<!-- tabs:start -->
6876

6977
### **Python3**
7078

7179
<!-- 这里可写当前语言的特殊实现逻辑 -->
7280

7381
```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
7597
```
7698

7799
### **Java**
78100

79101
<!-- 这里可写当前语言的特殊实现逻辑 -->
80102

81103
```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+
```
82154
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+
}
83177
```
84178

85179
### **...**

solution/1500-1599/1582.Special Positions in a Binary Matrix/README_EN.md

+87-1
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,99 @@
4242
### **Python3**
4343

4444
```python
45-
45+
class Solution:
46+
def numSpecial(self, mat: List[List[int]]) -> int:
47+
m, n = len(mat), len(mat[0])
48+
r = [0] * m
49+
c = [0] * n
50+
for i, row in enumerate(mat):
51+
for j, v in enumerate(row):
52+
r[i] += v
53+
c[j] += v
54+
ans = 0
55+
for i in range(m):
56+
for j in range(n):
57+
if mat[i][j] == 1 and r[i] == 1 and c[j] == 1:
58+
ans += 1
59+
return ans
4660
```
4761

4862
### **Java**
4963

5064
```java
65+
class Solution {
66+
public int numSpecial(int[][] mat) {
67+
int m = mat.length, n = mat[0].length;
68+
int[] r = new int[m];
69+
int[] c = new int[n];
70+
for (int i = 0; i < m; ++i) {
71+
for (int j = 0; j < n; ++j) {
72+
r[i] += mat[i][j];
73+
c[j] += mat[i][j];
74+
}
75+
}
76+
int ans = 0;
77+
for (int i = 0; i < m; ++i) {
78+
for (int j = 0; j < n; ++j) {
79+
if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) {
80+
++ans;
81+
}
82+
}
83+
}
84+
return ans;
85+
}
86+
}
87+
```
88+
89+
### **C++**
90+
91+
```cpp
92+
class Solution {
93+
public:
94+
int numSpecial(vector<vector<int>>& mat) {
95+
int m = mat.size(), n = mat[0].size();
96+
vector<int> r(m), c(n);
97+
for (int i = 0; i < m; ++i) {
98+
for (int j = 0; j < n; ++j) {
99+
r[i] += mat[i][j];
100+
c[j] += mat[i][j];
101+
}
102+
}
103+
int ans = 0;
104+
for (int i = 0; i < m; ++i) {
105+
for (int j = 0; j < n; ++j) {
106+
if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) {
107+
++ans;
108+
}
109+
}
110+
}
111+
return ans;
112+
}
113+
};
114+
```
51115
116+
### **Go**
117+
118+
```go
119+
func numSpecial(mat [][]int) int {
120+
m, n := len(mat), len(mat[0])
121+
r, c := make([]int, m), make([]int, n)
122+
for i, row := range mat {
123+
for j, v := range row {
124+
r[i] += v
125+
c[j] += v
126+
}
127+
}
128+
ans := 0
129+
for i, x := range r {
130+
for j, y := range c {
131+
if mat[i][j] == 1 && x == 1 && y == 1 {
132+
ans++
133+
}
134+
}
135+
}
136+
return ans
137+
}
52138
```
53139

54140
### **...**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
public:
3+
int numSpecial(vector<vector<int>>& mat) {
4+
int m = mat.size(), n = mat[0].size();
5+
vector<int> r(m), c(n);
6+
for (int i = 0; i < m; ++i) {
7+
for (int j = 0; j < n; ++j) {
8+
r[i] += mat[i][j];
9+
c[j] += mat[i][j];
10+
}
11+
}
12+
int ans = 0;
13+
for (int i = 0; i < m; ++i) {
14+
for (int j = 0; j < n; ++j) {
15+
if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) {
16+
++ans;
17+
}
18+
}
19+
}
20+
return ans;
21+
}
22+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
func numSpecial(mat [][]int) int {
2+
m, n := len(mat), len(mat[0])
3+
r, c := make([]int, m), make([]int, n)
4+
for i, row := range mat {
5+
for j, v := range row {
6+
r[i] += v
7+
c[j] += v
8+
}
9+
}
10+
ans := 0
11+
for i, x := range r {
12+
for j, y := range c {
13+
if mat[i][j] == 1 && x == 1 && y == 1 {
14+
ans++
15+
}
16+
}
17+
}
18+
return ans
19+
}
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
class Solution {
22
public int numSpecial(int[][] mat) {
3-
int rows = mat.length;
4-
int cols = mat[0].length;
5-
6-
int[] rows1 = new int[rows];
7-
int[] cols1 = new int[cols];
8-
for (int i = 0; i < rows; i++) {
9-
for (int j = 0; j < cols; j++) {
10-
if (mat[i][j] == 1) {
11-
rows1[i]++;
12-
cols1[j]++;
13-
}
3+
int m = mat.length, n = mat[0].length;
4+
int[] r = new int[m];
5+
int[] c = new int[n];
6+
for (int i = 0; i < m; ++i) {
7+
for (int j = 0; j < n; ++j) {
8+
r[i] += mat[i][j];
9+
c[j] += mat[i][j];
1410
}
1511
}
16-
1712
int ans = 0;
18-
for (int i = 0; i < rows; i++) {
19-
for (int j = 0; j < cols; j++) {
20-
if (mat[i][j] == 1 && rows1[i] == 1 && cols1[j] == 1) {
21-
ans ++;
22-
}
13+
for (int i = 0; i < m; ++i) {
14+
for (int j = 0; j < n; ++j) {
15+
if (mat[i][j] == 1 && r[i] == 1 && c[j] == 1) {
16+
++ans;
17+
}
2318
}
2419
}
25-
2620
return ans;
2721
}
2822
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class Solution:
2+
def numSpecial(self, mat: List[List[int]]) -> int:
3+
m, n = len(mat), len(mat[0])
4+
r = [0] * m
5+
c = [0] * n
6+
for i, row in enumerate(mat):
7+
for j, v in enumerate(row):
8+
r[i] += v
9+
c[j] += v
10+
ans = 0
11+
for i in range(m):
12+
for j in range(n):
13+
if mat[i][j] == 1 and r[i] == 1 and c[j] == 1:
14+
ans += 1
15+
return ans

solution/CONTEST_README.md

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ https://lcpredictor.herokuapp.com
2323

2424
## 往期竞赛
2525

26+
#### 第 309 场周赛(2022-09-04 10:30, 90 分钟) 参赛人数 7972
27+
28+
- [2399. 检查相同字母间的距离](/solution/2300-2399/2399.Check%20Distances%20Between%20Same%20Letters/README.md)
29+
- [2400. 恰好移动 k 步到达某一位置的方法数目](/solution/2400-2499/2400.Number%20of%20Ways%20to%20Reach%20a%20Position%20After%20Exactly%20k%20Steps/README.md)
30+
- [2401. 最长优雅子数组](/solution/2400-2499/2401.Longest%20Nice%20Subarray/README.md)
31+
- [2402. 会议室 III](/solution/2400-2499/2402.Meeting%20Rooms%20III/README.md)
32+
33+
2634
#### 第 86 场双周赛(2022-09-03 22:30, 90 分钟) 参赛人数 4401
2735

2836
- [2395. 和相等的子数组](/solution/2300-2399/2395.Find%20Subarrays%20With%20Equal%20Sum/README.md)

solution/CONTEST_README_EN.md

+8
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ Get your rating changes right after the completion of LeetCode contests, https:/
2525

2626
## Past Contests
2727

28+
#### Weekly Contest 309
29+
30+
- [2399. Check Distances Between Same Letters](/solution/2300-2399/2399.Check%20Distances%20Between%20Same%20Letters/README_EN.md)
31+
- [2400. Number of Ways to Reach a Position After Exactly k Steps](/solution/2400-2499/2400.Number%20of%20Ways%20to%20Reach%20a%20Position%20After%20Exactly%20k%20Steps/README_EN.md)
32+
- [2401. Longest Nice Subarray](/solution/2400-2499/2401.Longest%20Nice%20Subarray/README_EN.md)
33+
- [2402. Meeting Rooms III](/solution/2400-2499/2402.Meeting%20Rooms%20III/README_EN.md)
34+
35+
2836
#### Biweekly Contest 86
2937

3038
- [2395. Find Subarrays With Equal Sum](/solution/2300-2399/2395.Find%20Subarrays%20With%20Equal%20Sum/README_EN.md)

0 commit comments

Comments
 (0)