top of page
Search

Map of Highest Peak

Updated: Mar 25, 2021

You are given an integer matrix isWater of size m x n that represents a map of land and water cells.

  • If isWater[i][j] == 0, cell (i, j) is a land cell.

  • If isWater[i][j] == 1, cell (i, j) is a water cell.

You must assign each cell a height in a way that follows these rules:

  • The height of each cell must be non-negative.

  • If the cell is a water cell, its height must be 0.

  • Any two adjacent cells must have an absolute height difference of at most 1. A cell is adjacent to another cell if the former is directly north, east, south, or west of the latter (i.e., their sides are touching).

Find an assignment of heights such that the maximum height in the matrix is maximized.

Return an integer matrix height of size m x n where height[i][j] is cell (i, j)'s height. If there are multiple solutions, return any of them.



Example 1:


Input: isWater = [[0,1],[0,0]]
Output: [[1,0],[2,1]]
Explanation: The image shows the assigned heights of each cell.
The blue cell is the water cell, and the green cells are the land cells.

Example 2:


Input: isWater = [[0,0,1],[1,0,0],[0,0,0]]
Output: [[1,1,0],[0,1,1],[1,2,2]]
Explanation: A height of 2 is the maximum possible height of any assignment.
Any height assignment that has a maximum height of 2 while still meeting the rules will also be accepted.

Constraints:

  • m == isWater.length

  • n == isWater[i].length

  • 1 <= m, n <= 1000

  • isWater[i][j] is 0 or 1.

  • There is at least one water cell.

Solution:


class Solution {
    public int[] d={0,1,0,-1,0};
    public int[][] highestPeak(int[][] isWater) {
        int m = isWater.length;
        int n = isWater[0].length;
        
        int[][] height = new int[m][n];
        Queue<int[]> q = new LinkedList<>();
        
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
            {
                if(isWater[i][j]==1)
                {
                    height[i][j]=0;
                    q.offer(new int[]{i,j});
                }
                else
                    height[i][j]=-1;
            }
        }
        while(!q.isEmpty())
        {
            int[] cell = q.poll();
            int row = cell[0],col=cell[1];
            for(int k=0;k<4;k++)
            {
                int x=row+d[k], y=col+d[k+1];
                if(x>=0 && x<m && y>=0 && y<n && height[x][y]<0)
                {
                    height[x][y] = height[row][col]+1;
                    q.offer(new int[]{x,y});
                }
            }
        }
        return height;
    }
    
}

57 views0 comments

Recent Posts

See All

Minimum Deletions to Make Character Frequencies Unique

A string s is called good if there are no two different characters in s that have the same frequency. Given a string s, return the minimum number of characters you need to delete to make s good. The f

Smallest String With A Given Numeric Value

The numeric value of a lowercase character is defined as its position (1-indexed) in the alphabet, so the numeric value of a is 1, the numeric value of b is 2, the numeric value of c is 3, and so on.

bottom of page