Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Move from brute-force thinking to an efficient approach using array strategy.
You are given two arrays rowSum and colSum of non-negative integers where rowSum[i] is the sum of the elements in the ith row and colSum[j] is the sum of the elements of the jth column of a 2D matrix. In other words, you do not know the elements of the matrix, but you do know the sums of each row and column.
Find any matrix of non-negative integers of size rowSum.length x colSum.length that satisfies the rowSum and colSum requirements.
Return a 2D array representing any matrix that fulfills the requirements. It's guaranteed that at least one matrix that fulfills the requirements exists.
Example 1:
Input: rowSum = [3,8], colSum = [4,7]
Output: [[3,0],
[1,7]]
Explanation:
0th row: 3 + 0 = 3 == rowSum[0]
1st row: 1 + 7 = 8 == rowSum[1]
0th column: 3 + 1 = 4 == colSum[0]
1st column: 0 + 7 = 7 == colSum[1]
The row and column sums match, and all matrix elements are non-negative.
Another possible matrix is: [[1,2],
[3,5]]
Example 2:
Input: rowSum = [5,7,10], colSum = [8,6,8]
Output: [[0,5,0],
[6,1,0],
[2,0,8]]
Constraints:
1 <= rowSum.length, colSum.length <= 5000 <= rowSum[i], colSum[i] <= 108sum(rowSum) == sum(colSum)Problem summary: You are given two arrays rowSum and colSum of non-negative integers where rowSum[i] is the sum of the elements in the ith row and colSum[j] is the sum of the elements of the jth column of a 2D matrix. In other words, you do not know the elements of the matrix, but you do know the sums of each row and column. Find any matrix of non-negative integers of size rowSum.length x colSum.length that satisfies the rowSum and colSum requirements. Return a 2D array representing any matrix that fulfills the requirements. It's guaranteed that at least one matrix that fulfills the requirements exists.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Greedy
[3,8] [4,7]
[5,7,10] [8,6,8]
reconstruct-a-2-row-binary-matrix)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #1605: Find Valid Matrix Given Row and Column Sums
class Solution {
public int[][] restoreMatrix(int[] rowSum, int[] colSum) {
int m = rowSum.length;
int n = colSum.length;
int[][] ans = new int[m][n];
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
int x = Math.min(rowSum[i], colSum[j]);
ans[i][j] = x;
rowSum[i] -= x;
colSum[j] -= x;
}
}
return ans;
}
}
// Accepted solution for LeetCode #1605: Find Valid Matrix Given Row and Column Sums
func restoreMatrix(rowSum []int, colSum []int) [][]int {
m, n := len(rowSum), len(colSum)
ans := make([][]int, m)
for i := range ans {
ans[i] = make([]int, n)
}
for i := range rowSum {
for j := range colSum {
x := min(rowSum[i], colSum[j])
ans[i][j] = x
rowSum[i] -= x
colSum[j] -= x
}
}
return ans
}
# Accepted solution for LeetCode #1605: Find Valid Matrix Given Row and Column Sums
class Solution:
def restoreMatrix(self, rowSum: List[int], colSum: List[int]) -> List[List[int]]:
m, n = len(rowSum), len(colSum)
ans = [[0] * n for _ in range(m)]
for i in range(m):
for j in range(n):
x = min(rowSum[i], colSum[j])
ans[i][j] = x
rowSum[i] -= x
colSum[j] -= x
return ans
// Accepted solution for LeetCode #1605: Find Valid Matrix Given Row and Column Sums
struct Solution;
impl Solution {
fn restore_matrix(mut row_sum: Vec<i32>, mut col_sum: Vec<i32>) -> Vec<Vec<i32>> {
let n = row_sum.len();
let m = col_sum.len();
let mut i = 0;
let mut j = 0;
let mut res = vec![vec![0; m]; n];
while i < n && j < m {
let x = row_sum[i].min(col_sum[j]);
row_sum[i] -= x;
col_sum[j] -= x;
res[i][j] = x;
if row_sum[i] == 0 {
i += 1;
} else {
j += 1;
}
}
res
}
}
#[test]
fn test() {
let row_sum = vec![3, 8];
let col_sum = vec![4, 7];
let res = vec_vec_i32![[3, 0], [1, 7]];
assert_eq!(Solution::restore_matrix(row_sum, col_sum), res);
}
// Accepted solution for LeetCode #1605: Find Valid Matrix Given Row and Column Sums
function restoreMatrix(rowSum: number[], colSum: number[]): number[][] {
const m = rowSum.length;
const n = colSum.length;
const ans = Array.from(new Array(m), () => new Array(n).fill(0));
for (let i = 0; i < m; i++) {
for (let j = 0; j < n; j++) {
const x = Math.min(rowSum[i], colSum[j]);
ans[i][j] = x;
rowSum[i] -= x;
colSum[j] -= x;
}
}
return ans;
}
Use this to step through a reusable interview workflow for this problem.
Try every possible combination of choices. With n items each having two states (include/exclude), the search space is 2ⁿ. Evaluating each combination takes O(n), giving O(n × 2ⁿ). The recursion stack or subset storage uses O(n) space.
Greedy algorithms typically sort the input (O(n log n)) then make a single pass (O(n)). The sort dominates. If the input is already sorted or the greedy choice can be computed without sorting, time drops to O(n). Proving greedy correctness (exchange argument) is harder than the implementation.
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: Locally optimal choices may fail globally.
Usually fails on: Counterexamples appear on crafted input orderings.
Fix: Verify with exchange argument or monotonic objective before committing.