Enclosed Islands - Google Top Interview Questions


Problem Statement :


You are given a two-dimensional integer matrix of 1s and 0s. 
A 1 represents land and 0 represents water. 
From any land cell you can move up, down, left or right to another land cell or go off the matrix.

Return the number of land cells from which we cannot go off the matrix.

Constraints

n, m ≤ 250 where n and m are the number of rows and columns in matrix

Example 1

Input

matrix = [
    [0, 0, 0, 1],
    [0, 1, 1, 0],
    [0, 1, 1, 0],
    [0, 0, 0, 0]
]

Output

4

Explanation

There's 4 land squares in the middle from which we cannot walk off the matrix.



Solution :



title-img




                        Solution in C++ :

def find_answer():
    for cell in matrix:
        if cell is edge_cell:
            push cell in queue

    while queue is not empty:
        current_cell = 0 # marking as visited
        for neighbor of current_cell:
            if neighbor is land:
                push neighbor in queue

    return  number of lands in matrix
                    


                        Solution in Java :

import java.util.*;

class Solution {
    private int[][] matrix;
    public int solve(int[][] matrix) {
        this.matrix = matrix;
        // sink all islands touching an edge, then count land cells in interior.
        /// check for the vertical edges
        for (int i = 0; i < matrix.length; i++) {
            if (matrix[i][0] == 1) {
                floodfill(i, 0);
            }
            if (matrix[i][matrix[0].length - 1] == 1) {
                floodfill(i, matrix[0].length - 1);
            }
        }
        // check for the horizontal edges
        for (int j = 0; j < matrix[0].length; j++) {
            if (matrix[0][j] == 1) {
                floodfill(0, j);
            }
            if (matrix[matrix.length - 1][j] == 1) {
                floodfill(matrix.length - 1, j);
            }
        }
        int ret = 0;
        for (int i = 1; i < matrix.length - 1; i++) {
            for (int j = 1; j < matrix[0].length - 1; j++) {
                ret += matrix[i][j];
            }
        }
        return ret;
    }
    public void floodfill(int i, int j) {
        if (i == -1 || j == -1 || i == matrix.length || j == matrix[0].length
            || matrix[i][j] == 0) {
            return;
        }
        matrix[i][j] = 0;
        floodfill(i + 1, j);
        floodfill(i - 1, j);
        floodfill(i, j + 1);
        floodfill(i, j - 1);
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, matrix):
        q = [
            (i, j)
            for i in range(len(matrix))
            for j in range(len(matrix[i]))
            if matrix[i][j]
            and (i == 0 or i == len(matrix) - 1 or j == 0 or j == len(matrix[i]) - 1)
        ]
        idx = 0
        for x, y in q:
            matrix[x][y] = 0
        while idx < len(q):
            x, y = q[idx]
            for dx, dy in [(-1, 0), (0, -1), (0, 1), (1, 0)]:
                nx, ny = x + dx, y + dy
                if 0 <= nx < len(matrix) and 0 <= ny < len(matrix[nx]) and matrix[nx][ny]:
                    matrix[nx][ny] = 0
                    q.append((nx, ny))
            idx += 1
        return sum(sum(row) for row in matrix)
                    


View More Similar Problems

Insert a node at a specific position in a linked list

Given the pointer to the head node of a linked list and an integer to insert at a certain position, create a new node with the given integer as its data attribute, insert this node at the desired position and return the head node. A position of 0 indicates head, a position of 1 indicates one node away from the head and so on. The head pointer given may be null meaning that the initial list is e

View Solution →

Delete a Node

Delete the node at a given position in a linked list and return a reference to the head node. The head is at position 0. The list may be empty after you delete the node. In that case, return a null value. Example: list=0->1->2->3 position=2 After removing the node at position 2, list'= 0->1->-3. Function Description: Complete the deleteNode function in the editor below. deleteNo

View Solution →

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →