返回介绍

solution / 1900-1999 / 1970.Last Day Where You Can Still Cross / README_EN

发布于 2024-06-17 01:03:12 字数 8446 浏览 0 评论 0 收藏 0

1970. Last Day Where You Can Still Cross

中文文档

Description

There is a 1-based binary matrix where 0 represents land and 1 represents water. You are given integers row and col representing the number of rows and columns in the matrix, respectively.

Initially on day 0, the entire matrix is land. However, each day a new cell becomes flooded with water. You are given a 1-based 2D array cells, where cells[i] = [ri, ci] represents that on the ith day, the cell on the rith row and cith column (1-based coordinates) will be covered with water (i.e., changed to 1).

You want to find the last day that it is possible to walk from the top to the bottom by only walking on land cells. You can start from any cell in the top row and end at any cell in the bottom row. You can only travel in the four cardinal directions (left, right, up, and down).

Return _the last day where it is possible to walk from the top to the bottom by only walking on land cells_.

 

Example 1:

Input: row = 2, col = 2, cells = [[1,1],[2,1],[1,2],[2,2]]
Output: 2
Explanation: The above image depicts how the matrix changes each day starting from day 0.
The last day where it is possible to cross from top to bottom is on day 2.

Example 2:

Input: row = 2, col = 2, cells = [[1,1],[1,2],[2,1],[2,2]]
Output: 1
Explanation: The above image depicts how the matrix changes each day starting from day 0.
The last day where it is possible to cross from top to bottom is on day 1.

Example 3:

Input: row = 3, col = 3, cells = [[1,2],[2,1],[3,3],[2,2],[1,1],[1,3],[2,3],[3,2],[3,1]]
Output: 3
Explanation: The above image depicts how the matrix changes each day starting from day 0.
The last day where it is possible to cross from top to bottom is on day 3.

 

Constraints:

  • 2 <= row, col <= 2 * 104
  • 4 <= row * col <= 2 * 104
  • cells.length == row * col
  • 1 <= ri <= row
  • 1 <= ci <= col
  • All the values of cells are unique.

Solutions

Solution 1

class Solution:
  def latestDayToCross(self, row: int, col: int, cells: List[List[int]]) -> int:
    n = row * col
    p = list(range(n + 2))
    grid = [[False] * col for _ in range(row)]
    top, bottom = n, n + 1

    def find(x):
      if p[x] != x:
        p[x] = find(p[x])
      return p[x]

    def check(i, j):
      return 0 <= i < row and 0 <= j < col and grid[i][j]

    for k in range(len(cells) - 1, -1, -1):
      i, j = cells[k][0] - 1, cells[k][1] - 1
      grid[i][j] = True
      for x, y in [[0, 1], [0, -1], [1, 0], [-1, 0]]:
        if check(i + x, j + y):
          p[find(i * col + j)] = find((i + x) * col + j + y)
      if i == 0:
        p[find(i * col + j)] = find(top)
      if i == row - 1:
        p[find(i * col + j)] = find(bottom)
      if find(top) == find(bottom):
        return k
    return 0
class Solution {
  private int[] p;
  private int row;
  private int col;
  private boolean[][] grid;
  private int[][] dirs = new int[][] {{0, -1}, {0, 1}, {1, 0}, {-1, 0}};

  public int latestDayToCross(int row, int col, int[][] cells) {
    int n = row * col;
    this.row = row;
    this.col = col;
    p = new int[n + 2];
    for (int i = 0; i < p.length; ++i) {
      p[i] = i;
    }
    grid = new boolean[row][col];
    int top = n, bottom = n + 1;
    for (int k = cells.length - 1; k >= 0; --k) {
      int i = cells[k][0] - 1, j = cells[k][1] - 1;
      grid[i][j] = true;
      for (int[] e : dirs) {
        if (check(i + e[0], j + e[1])) {
          p[find(i * col + j)] = find((i + e[0]) * col + j + e[1]);
        }
      }
      if (i == 0) {
        p[find(i * col + j)] = find(top);
      }
      if (i == row - 1) {
        p[find(i * col + j)] = find(bottom);
      }
      if (find(top) == find(bottom)) {
        return k;
      }
    }
    return 0;
  }

  private int find(int x) {
    if (p[x] != x) {
      p[x] = find(p[x]);
    }
    return p[x];
  }

  private boolean check(int i, int j) {
    return i >= 0 && i < row && j >= 0 && j < col && grid[i][j];
  }
}
class Solution {
public:
  vector<int> p;
  int dirs[4][2] = {{0, -1}, {0, 1}, {1, 0}, {-1, 0}};
  int row, col;

  int latestDayToCross(int row, int col, vector<vector<int>>& cells) {
    int n = row * col;
    this->row = row;
    this->col = col;
    p.resize(n + 2);
    for (int i = 0; i < p.size(); ++i) p[i] = i;
    vector<vector<bool>> grid(row, vector<bool>(col, false));
    int top = n, bottom = n + 1;
    for (int k = cells.size() - 1; k >= 0; --k) {
      int i = cells[k][0] - 1, j = cells[k][1] - 1;
      grid[i][j] = true;
      for (auto e : dirs) {
        if (check(i + e[0], j + e[1], grid)) {
          p[find(i * col + j)] = find((i + e[0]) * col + j + e[1]);
        }
      }
      if (i == 0) p[find(i * col + j)] = find(top);
      if (i == row - 1) p[find(i * col + j)] = find(bottom);
      if (find(top) == find(bottom)) return k;
    }
    return 0;
  }

  bool check(int i, int j, vector<vector<bool>>& grid) {
    return i >= 0 && i < row && j >= 0 && j < col && grid[i][j];
  }

  int find(int x) {
    if (p[x] != x) p[x] = find(p[x]);
    return p[x];
  }
};
var p []int

func latestDayToCross(row int, col int, cells [][]int) int {
  n := row * col
  p = make([]int, n+2)
  for i := 0; i < len(p); i++ {
    p[i] = i
  }
  grid := make([][]bool, row)
  for i := 0; i < row; i++ {
    grid[i] = make([]bool, col)
  }
  top, bottom := n, n+1
  dirs := [4][2]int{{0, -1}, {0, 1}, {1, 0}, {-1, 0}}
  for k := len(cells) - 1; k >= 0; k-- {
    i, j := cells[k][0]-1, cells[k][1]-1
    grid[i][j] = true
    for _, e := range dirs {
      if check(i+e[0], j+e[1], grid) {
        p[find(i*col+j)] = find((i+e[0])*col + j + e[1])
      }
    }
    if i == 0 {
      p[find(i*col+j)] = find(top)
    }
    if i == row-1 {
      p[find(i*col+j)] = find(bottom)
    }
    if find(top) == find(bottom) {
      return k
    }
  }
  return 0
}

func check(i, j int, grid [][]bool) bool {
  return i >= 0 && i < len(grid) && j >= 0 && j < len(grid[0]) && grid[i][j]
}

func find(x int) int {
  if p[x] != x {
    p[x] = find(p[x])
  }
  return p[x]
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文