13. 机器人的运动范围

NowCoder

题目描述

地上有一个 m 行和 n 列的方格。一个机器人从坐标 (0, 0) 的格子开始移动,每一次只能向左右上下四个方向移动一格,但是不能进入行坐标和列坐标的数位之和大于 k 的格子。

例如,当 k 为 18 时,机器人能够进入方格 (35,37),因为 3+5+3+7=18。但是,它不能进入方格 (35,38),因为 3+5+3+8=19。请问该机器人能够达到多少个格子?

解题思路

使用深度优先搜索(Depth First Search,DFS)方法进行求解。回溯是深度优先搜索的一种特例,它在一次搜索过程中需要设置一些本次搜索过程的局部状态,并在本次搜索结束之后清除状态。而普通的深度优先搜索并不需要使用这些局部状态,虽然还是有可能设置一些全局状态。

  1. private static final int[][] next = {{0, -1}, {0, 1}, {-1, 0}, {1, 0}};
  2. private int cnt = 0;
  3. private int rows;
  4. private int cols;
  5. private int threshold;
  6. private int[][] digitSum;
  7. public int movingCount(int threshold, int rows, int cols) {
  8. this.rows = rows;
  9. this.cols = cols;
  10. this.threshold = threshold;
  11. initDigitSum();
  12. boolean[][] marked = new boolean[rows][cols];
  13. dfs(marked, 0, 0);
  14. return cnt;
  15. }
  16. private void dfs(boolean[][] marked, int r, int c) {
  17. if (r < 0 || r >= rows || c < 0 || c >= cols || marked[r][c])
  18. return;
  19. marked[r][c] = true;
  20. if (this.digitSum[r][c] > this.threshold)
  21. return;
  22. cnt++;
  23. for (int[] n : next)
  24. dfs(marked, r + n[0], c + n[1]);
  25. }
  26. private void initDigitSum() {
  27. int[] digitSumOne = new int[Math.max(rows, cols)];
  28. for (int i = 0; i < digitSumOne.length; i++) {
  29. int n = i;
  30. while (n > 0) {
  31. digitSumOne[i] += n % 10;
  32. n /= 10;
  33. }
  34. }
  35. this.digitSum = new int[rows][cols];
  36. for (int i = 0; i < this.rows; i++)
  37. for (int j = 0; j < this.cols; j++)
  38. this.digitSum[i][j] = digitSumOne[i] + digitSumOne[j];
  39. }

13. 机器人的运动范围 - 图1