Last Day Where You Can Still Cross
Understand how to apply the union find algorithm to determine the final day one can cross a matrix before flooding blocks all land paths. This lesson guides you through managing binary grid states and movement constraints to solve the crossing problem.
We'll cover the following...
Statement
You are given two integers, rows and cols, which represent the number of rows and columns in a
Initially, on day 0, the whole matrix will just be all 0s, that is, all land. With each passing day, one of the cells of this matrix will get flooded and, therefore, will change to water, that is, from to . This continues until the entire matrix is flooded. You are given a 1-based array, waterCells, that records which cell will be flooded on each day. Each element ...