<p>You are given an integer matrix <code>isWater</code> of size <code>m x n</code> that represents a map of <strong>land</strong> and <strong>water</strong> cells.</p>
<ul>
<li>If <code>isWater[i][j] == 0</code>, cell <code>(i, j)</code> is a <strong>land</strong> cell.</li>
<li>If <code>isWater[i][j] == 1</code>, cell <code>(i, j)</code> is a <strong>water</strong> cell.</li>
</ul>
<p>You must assign each cell a height in a way that follows these rules:</p>
<ul>
<li>The height of each cell must be non-negative.</li>
<li>If the cell is a <strong>water</strong> cell, its height must be <code>0</code>.</li>
<li>Any two adjacent cells must have an absolute height difference of <strong>at most</strong><code>1</code>. 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).</li>
</ul>
<p>Find an assignment of heights such that the maximum height in the matrix is <strong>maximized</strong>.</p>
<p>Return <em>an integer matrix </em><code>height</code><em> of size </em><code>m x n</code><em> where </em><code>height[i][j]</code><em> is cell </em><code>(i, j)</code><em>'s height. If there are multiple solutions, return <strong>any</strong> of them</em>.</p>