Medium
Given a 0-indexed 2D grid
of size m x n
, you should find the matrix answer
of size m x n
.
The value of each cell (r, c)
of the matrix answer
is calculated in the following way:
topLeft[r][c]
be the number of distinct values in the top-left diagonal of the cell (r, c)
in the matrix grid
.bottomRight[r][c]
be the number of distinct values in the bottom-right diagonal of the cell (r, c)
in the matrix grid
.Then answer[r][c] = |topLeft[r][c] - bottomRight[r][c]|
.
Return the matrix answer
.
A matrix diagonal is a diagonal line of cells starting from some cell in either the topmost row or leftmost column and going in the bottom-right direction until reaching the matrix’s end.
A cell (r1, c1)
belongs to the top-left diagonal of the cell (r, c)
, if both belong to the same diagonal and r1 < r
. Similarly is defined bottom-right diagonal.
Example 1:
Input: grid = [[1,2,3],[3,1,5],[3,2,1]]
Output: [[1,1,0],[1,0,1],[0,1,1]]
Explanation:
The 1st diagram denotes the initial grid.
The 2nd diagram denotes a grid for cell (0,0), where blue-colored cells are cells on its bottom-right diagonal.
The 3rd diagram denotes a grid for cell (1,2), where red-colored cells are cells on its top-left diagonal.
The 4th diagram denotes a grid for cell (1,1), where blue-colored cells are cells on its bottom-right diagonal and red-colored cells are cells on its top-left diagonal.
The answers of other cells are similarly calculated.
Example 2:
Input: grid = [[1]]
Output: [[0]]
Explanation: - The cell (0,0) contains [] on its bottom-right diagonal and [] on its top-left diagonal. The answer is |0 - 0| = 0.
Constraints:
m == grid.length
n == grid[i].length
1 <= m, n, grid[i][j] <= 50
class Solution {
fun differenceOfDistinctValues(grid: Array<IntArray>): Array<IntArray> {
val m = grid.size
val n = grid[0].size
val arrTopLeft = Array(m) { IntArray(n) }
val arrBotRight = Array(m) { IntArray(n) }
for (i in m - 1 downTo 0) {
var c = 0
var r: Int = i
val set: MutableSet<Int> = HashSet()
while (cellExists(r, c, grid)) {
arrTopLeft[r][c] = set.size
set.add(grid[r++][c++])
}
}
for (i in 1 until n) {
var r = 0
var c: Int = i
val set: MutableSet<Int> = HashSet()
while (cellExists(r, c, grid)) {
arrTopLeft[r][c] = set.size
set.add(grid[r++][c++])
}
}
for (i in 0 until n) {
var r = m - 1
var c: Int = i
val set: MutableSet<Int> = HashSet()
while (cellExists(r, c, grid)) {
arrBotRight[r][c] = set.size
set.add(grid[r--][c--])
}
}
for (i in m - 1 downTo 0) {
var c = n - 1
var r: Int = i
val set: MutableSet<Int> = HashSet()
while (cellExists(r, c, grid)) {
arrBotRight[r][c] = set.size
set.add(grid[r--][c--])
}
}
for (r in 0 until m) {
for (c in 0 until n) {
grid[r][c] = kotlin.math.abs(arrTopLeft[r][c] - arrBotRight[r][c])
}
}
return grid
}
private fun cellExists(r: Int, c: Int, grid: Array<IntArray>): Boolean {
return r >= 0 && r < grid.size && c >= 0 && c < grid[0].size
}
}