Skip to main content

Find All Groups of Farmland

Problem Description​

You are given a 0-indexed m x n binary matrix land where a 0 represents a hectare of forested land and a 1 represents a hectare of farmland.

To keep the land organized, there are designated rectangular areas of hectares that consist entirely of farmland. These rectangular areas are called groups. No two groups are adjacent, meaning farmland in one group is not four-directionally adjacent to another farmland in a different group.

land can be represented by a coordinate system where the top left corner of land is (0, 0) and the bottom right corner of land is (m-1, n-1). Find the coordinates of the top left and bottom right corner of each group of farmland. A group of farmland with a top left corner at (r1, c1) and a bottom right corner at (r2, c2) is represented by the 4-length array [r1, c1, r2, c2].

Return a 2D array containing the 4-length arrays described above for each group of farmland in land. If there are no groups of farmland, return an empty array. You may return the answer in any order.

Examples​

Example 1: image

Input: land = [[1,0,0],[0,1,1],[0,1,1]]
Output: [[0,0,0,0],[1,1,2,2]]

Example 2: image

Input: land = [[1,1],[1,1]]
Output: [[0,0,1,1]]
Explanation:
The first group has a top left corner at land[0][0] and a bottom right corner at land[1][1].

Constraints​

  • m == land.length
  • n == land[i].length
  • 1 <= m, n <= 300
  • land consists of only 0's and 1's.
  • Groups of farmland are rectangular in shape.

Solution for Remove Stones to Minimize the Total Problem​

Intuition​

The problem is to find all the rectangular farmlands in a grid. Each cell in the grid is either part of a farmland (denoted by 1) or not (denoted by 0). Farmlands are connected horizontally or vertically and form rectangular shapes. The goal is to identify the top-left and bottom-right coordinates of each rectangular farmland.

Approach​

  1. Grid Traversal:

    • Traverse each cell in the grid.
    • When encountering a cell with a value of 1 (indicating the start of a new farmland), initiate a Breadth-First Search (BFS) to find the extent of this farmland.
  2. Breadth-First Search (BFS):

    • Use a queue to explore all cells connected to the current farmland.
    • Track the maximum row and column indices (eR and eC) to determine the bottom-right corner of the farmland.
    • For each cell, check its four neighboring cells (up, down, left, right). If a neighboring cell is part of the farmland (i.e., its value is 1), add it to the queue and mark it as visited (set its value to 0).
  3. Record Farmland:

    • After completing the BFS for a farmland, record its top-left and bottom-right coordinates.
    • Continue the grid traversal to find all farmlands.

Implementation​

Live Editor
function Solution(arr) {
 function findFarmland(land) {
const ans = [];
const m = land.length;
const n = land[0].length;
const delRow = [-1, 0, 1, 0];
const delCol = [0, 1, 0, -1];
const q = [];

for (let i = 0; i < m; i++) {
    for (let j = 0; j < n; j++) {
        if (land[i][j] === 1) {
            q.push([i, j]);
            land[i][j] = 0;
            let eR = i, eC = j;
            while (q.length > 0) {
                const [sR, sC] = q.shift();
                
                for (let k = 0; k < 4; k++) {
                    const nR = sR + delRow[k];
                    const nC = sC + delCol[k];
                    if (nR >= 0 && nR < m && nC >= 0 && nC < n && land[nR][nC] === 1) {
                        q.push([nR, nC]);
                        land[nR][nC] = 0;
                        eR = Math.max(eR, nR);
                        eC = Math.max(eC, nC);
                    }
                }
            }
            ans.push([i, j, eR, eC]);
        }
    }
}
return ans;
}

  const input = [[1,0,0],[0,1,1],[0,1,1]]
 
  const output =findFarmland(input)
  return (
    <div>
      <p>
        <b>Input: </b>
        {JSON.stringify(input)}
      </p>
      <p>
        <b>Output:</b> {output.toString()}
      </p>
    </div>
  );
}
Result
Loading...

Complexity Analysis​

  • Time Complexity: O(nβˆ—m)O(n*m)
  • Space Complexity: O(nβˆ—m)O(n*m)

Code in Different Languages​

Written by @hiteshgahanolia
function findFarmland(land) {
const ans = [];
const m = land.length;
const n = land[0].length;
const delRow = [-1, 0, 1, 0];
const delCol = [0, 1, 0, -1];
const q = [];

for (let i = 0; i < m; i++) {
for (let j = 0; j < n; j++) {
if (land[i][j] === 1) {
q.push([i, j]);
land[i][j] = 0;
let eR = i, eC = j;
while (q.length > 0) {
const [sR, sC] = q.shift();

for (let k = 0; k < 4; k++) {
const nR = sR + delRow[k];
const nC = sC + delCol[k];
if (nR >= 0 && nR < m && nC >= 0 && nC < n && land[nR][nC] === 1) {
q.push([nR, nC]);
land[nR][nC] = 0;
eR = Math.max(eR, nR);
eC = Math.max(eC, nC);
}
}
}
ans.push([i, j, eR, eC]);
}
}
}
return ans;
}

References​