|
21 | 21 |
|
22 | 22 | <strong>输出:</strong> 3
|
23 | 23 | <strong>解析:</strong> 全部三个'B'都是黑色孤独像素。
|
| 24 | + |
| 25 | +<img alt="" src="https://cdn.jsdelivr.net/gh/doocs/leetcode@main/solution/0500-0599/0531.Lonely%20Pixel%20I/images/pixel1.jpg" style="width: 242px; height: 242px;" /> |
24 | 26 | </pre>
|
25 | 27 |
|
26 | 28 | <p> </p>
|
|
33 | 35 |
|
34 | 36 | <p> </p>
|
35 | 37 |
|
36 |
| - |
37 | 38 | ## 解法
|
38 | 39 |
|
39 | 40 | <!-- 这里可写通用的实现逻辑 -->
|
40 | 41 |
|
| 42 | +数组或哈希表统计每一行、每一列中 'B' 出现的次数。 |
| 43 | + |
41 | 44 | <!-- tabs:start -->
|
42 | 45 |
|
43 | 46 | ### **Python3**
|
44 | 47 |
|
45 | 48 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
46 | 49 |
|
47 | 50 | ```python
|
48 |
| - |
| 51 | +class Solution: |
| 52 | + def findLonelyPixel(self, picture: List[List[str]]) -> int: |
| 53 | + m, n = len(picture), len(picture[0]) |
| 54 | + rows, cols = [0] * m, [0] * n |
| 55 | + for i in range(m): |
| 56 | + for j in range(n): |
| 57 | + if picture[i][j] == 'B': |
| 58 | + rows[i] += 1 |
| 59 | + cols[j] += 1 |
| 60 | + res = 0 |
| 61 | + for i in range(m): |
| 62 | + if rows[i] == 1: |
| 63 | + for j in range(n): |
| 64 | + if picture[i][j] == 'B' and cols[j] == 1: |
| 65 | + res += 1 |
| 66 | + break |
| 67 | + return res |
49 | 68 | ```
|
50 | 69 |
|
51 | 70 | ### **Java**
|
52 | 71 |
|
53 | 72 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
54 | 73 |
|
55 | 74 | ```java
|
| 75 | +class Solution { |
| 76 | + public int findLonelyPixel(char[][] picture) { |
| 77 | + int m = picture.length, n = picture[0].length; |
| 78 | + int[] rows = new int[m]; |
| 79 | + int[] cols = new int[n]; |
| 80 | + for (int i = 0; i < m; ++i) { |
| 81 | + for (int j = 0; j < n; ++j) { |
| 82 | + if (picture[i][j] == 'B') { |
| 83 | + ++rows[i]; |
| 84 | + ++cols[j]; |
| 85 | + } |
| 86 | + } |
| 87 | + } |
| 88 | + int res = 0; |
| 89 | + for (int i = 0; i < m; ++i) { |
| 90 | + if (rows[i] == 1) { |
| 91 | + for (int j = 0; j < n; ++j) { |
| 92 | + if (picture[i][j] == 'B' && cols[j] == 1) { |
| 93 | + ++res; |
| 94 | + break; |
| 95 | + } |
| 96 | + } |
| 97 | + } |
| 98 | + } |
| 99 | + return res; |
| 100 | + } |
| 101 | +} |
| 102 | +``` |
| 103 | + |
| 104 | +### **C++** |
| 105 | + |
| 106 | +```cpp |
| 107 | +class Solution { |
| 108 | +public: |
| 109 | + int findLonelyPixel(vector<vector<char>>& picture) { |
| 110 | + int m = picture.size(), n = picture[0].size(); |
| 111 | + vector<int> rows(m); |
| 112 | + vector<int> cols(n); |
| 113 | + for (int i = 0; i < m; ++i) |
| 114 | + { |
| 115 | + for (int j = 0; j < n; ++j) |
| 116 | + { |
| 117 | + if (picture[i][j] == 'B') |
| 118 | + { |
| 119 | + ++rows[i]; |
| 120 | + ++cols[j]; |
| 121 | + } |
| 122 | + } |
| 123 | + } |
| 124 | + int res = 0; |
| 125 | + for (int i = 0; i < m; ++i) |
| 126 | + { |
| 127 | + if (rows[i] == 1) |
| 128 | + { |
| 129 | + for (int j = 0; j < n; ++j) |
| 130 | + { |
| 131 | + if (picture[i][j] == 'B' && cols[j] == 1) |
| 132 | + { |
| 133 | + ++res; |
| 134 | + break; |
| 135 | + } |
| 136 | + } |
| 137 | + } |
| 138 | + } |
| 139 | + return res; |
| 140 | + } |
| 141 | +}; |
| 142 | +``` |
56 | 143 |
|
| 144 | +### **Go** |
| 145 | +
|
| 146 | +```go |
| 147 | +func findLonelyPixel(picture [][]byte) int { |
| 148 | + m, n := len(picture), len(picture[0]) |
| 149 | + rows := make([]int, m) |
| 150 | + cols := make([]int, n) |
| 151 | + for i := 0; i < m; i++ { |
| 152 | + for j := 0; j < n; j++ { |
| 153 | + if picture[i][j] == 'B' { |
| 154 | + rows[i]++ |
| 155 | + cols[j]++ |
| 156 | + } |
| 157 | + } |
| 158 | + } |
| 159 | + res := 0 |
| 160 | + for i := 0; i < m; i++ { |
| 161 | + if rows[i] == 1 { |
| 162 | + for j := 0; j < n; j++ { |
| 163 | + if picture[i][j] == 'B' && cols[j] == 1 { |
| 164 | + res++ |
| 165 | + break |
| 166 | + } |
| 167 | + } |
| 168 | + } |
| 169 | + } |
| 170 | + return res |
| 171 | +} |
57 | 172 | ```
|
58 | 173 |
|
59 | 174 | ### **...**
|
|
0 commit comments