Appearance
1267. 统计参与通信的服务器
这里有一幅服务器分布图,服务器的位置标识在 m * n 的整数矩阵网格 grid 中,1 表示单元格上有服务器,0 表示没有。
如果两台服务器位于同一行或者同一列,我们就认为它们之间可以进行通信。
请你统计并返回能够与至少一台其他服务器进行通信的服务器的数量。
示例 1:
输入:grid = [[1,0],[0,1]]
输出:0
解释:没有一台服务器能与其他服务器进行通信。
示例 2:
输入:grid = [[1,0],[1,1]]
输出:3
解释:所有这些服务器都至少可以与一台别的服务器进行通信。
示例 3:
输入:grid = [[1,1,0,0],[0,0,1,0],[0,0,1,0],[0,0,0,1]]
输出:4
解释:第一行的两台服务器互相通信,第三列的两台服务器互相通信,但右下角的服务器无法与其他服务器通信。
提示:
m == grid.length
n == grid[i].length
1 <= m <= 250
1 <= n <= 250
grid[i][j] == 0 or 1
- 来源:力扣(LeetCode)
- 链接:https://leetcode.cn/problems/count-servers-that-communicate
javascript
/**
* @param {number[][]} grid
* @return {number}
*/
var countServers = function(grid) {
let total = 0, cols = [], isAloneServers = 0
for (let i = 0; i < grid.length; i++) {
let sum = 0, isMayAloneCol = 0
for (let j = 0; j < grid[0].length; j++) {
const ele = grid[i][j]
sum += ele
if(ele === 1){
total++
isMayAloneCol = j
}
}
if(sum === 1){
const isMayAloneColIndex = cols.indexOf(isMayAloneCol)
if(isMayAloneColIndex > -1){
cols.splice(isMayAloneColIndex, 1)
}else {
cols.push(isMayAloneCol)
}
}
}
for (let j = 0; j < cols.length; j++) {
let sum = 0
for (let i = 0; i < grid.length; i++) {
sum += grid[i][cols[j]]
}
if(sum === 1){
isAloneServers++
}
}
return total - isAloneServers
}
console.log(countServers([[1,0],[0,1]]) === 0)
console.log(countServers([[1,0],[1,1]]) === 3)
console.log(countServers([[1,1,0,0],[0,0,1,0],[0,0,1,0],[0,0,0,1]]) === 4)