当前位置:   article > 正文

[华为OD]BFS C卷 200 智能驾驶

[华为OD]BFS C卷 200 智能驾驶

题目:

有一辆汽车需要从m*n的地图的左上角(起点)开往地图的右下角(终点),去往每一个地区都需 

要消耗一定的油量,加油站可进行加油

请你计算汽车确保从起点到达终点时所需的最少初始油量说明:

(1)智能汽车可以上下左右四个方向移动1

⑵地图上的数字取值是0或-1或者正整数:

-1:表示加油站,可以加满油,汽车的油箱容量最大为100;

0:表示这个地区是障碍物,汽车不能通过

正整数:表示汽车走过这个地区的耗油量

⑶如果汽车无论如何都无法到达终点,则返回-1

输入描述

第一行为两个数字,M, V,表示地图的大小为M,N(0< M,N < 200)

后面一个M*N的矩阵,其中的值是0或-1或正整数,加油站的总数不超过200个

输出描述

如果汽车无论如何都无法到达终点,则返回-1

如果汽车可以到达终点,则返回最少的初始油量

示例1 

输入

2,2 

10,20 

30,40

输出

70

示例2 

输入

4,4 

10,30,30,20 

30,30,-1,10 

0,20,20,40

10,-1,30,40 

输出

70

示例3

输入

4,5

10,0,30,-1,10 

30,0,20,0,20 

10,0,10,0,30 

10,-1,30,0,10 

输出

60

示例4

输入

4,4

10,30,30,20 

30,30,20,10 

10,20,10,40 

10,20,30,40 

输出

-1

题解:这个题目要计算最少初始油料,那么如果经过加油站的话,明显就要直接加满油。

比较明显的BFS题目。但是需要判断到加油站的情况。由于油箱容量100,那么我们出发时候就将当前油量设置为100。

依旧还是需要定义一个内部类,参数有x,y坐标。这个里面就加了,初始油量originalOil,当前坐标走完需要油量needOil,也就是矩阵中当前的值。以及汽车在这个坐标的剩余油量restOil,还有一个bool值,是否有在加油站加过油。

1)如果到加油站时候,车辆没有加过油,那么从出发到这个加油站的初始油量(刚出发时候初始油量)就可以变为100减去当前剩余油量了。

2)当BFS向下一坐标搜索的时候,如果restOil剩余油量不足以满足去下一个坐标需要的油量needOil,那么就继续往下搜索

3)在到终点的时候,如果没有加过油,那么如果剩余油量>0,那么这个路径走下来的初始油量应该可以变成100减去当前剩余油量

4)当走到任意坐标时候,油量足够,而且汽车加过油,那么初始油量应该不变,因为加过油,剩余油量在加油站那个坐标直接变为100了

5)走过一个坐标,那么这个坐标访问标记visit[x][y]=1;

这个里面可以看到有一个难点就是可能有两条路线能经过同一个加油站,两条路径油量不同,如何确保最终是最少油量经过这个加油站。这边采用的是一个map<String,Integer> oilStations来解决表示的是这个加油站坐标和来这个加油站最少得油量。因为在初始化扫描的时候当矩matrixs[i][j]==-1,就是加油站,那么此时就初始化这个加油站油量为Integer.MaxValue.

6)那么在经过加油站的坐标时候,加油站坐标的visit[x][y],还是为0,不能变为1,防止其他路径更少油量,由于visit[x][y]==1,而不能到加油站,结果就不对。此时,先根据oilStations,拿到抵达这个加油站当前的最少油量prsentLeastOil,如果这个路径到这个加油站的最少油量小于

prsentLeastOil,那么说明现在这个路径就更优,那么就把这个路径继续扫描下去,也就是将这个路径的点加入到队列中去。如果大于等于,这条路径就不用继续扫描了,明显不是最优解,不能为等于是因为防止两个加油站相邻,那么等于的话,明显路径会在这两个加油站一直循环扫。

7)用一个列表表示每个到终点的路径最少油量,最后排序取第一个值就是最少初始油量了

这个题感觉难度就在处理加油站的逻辑上面。

代码:

  1. import java.util.*;
  2. public class CarPath {
  3. public static void main(String[] args) {
  4. Scanner sc = new Scanner(System.in);
  5. String[] matrix = sc.nextLine().split(",");
  6. int m = Integer.valueOf(matrix[0]);
  7. int n = Integer.valueOf(matrix[1]);
  8. int matrixs[][] = new int[m][n];
  9. int visit[][] = new int[m][n];
  10. Map<String, Integer> oilStations = new HashMap<>();
  11. for (int i = 0; i < m; i++) {
  12. String[] data = sc.nextLine().split(",");
  13. for (int j = 0; j < n; j++) {
  14. matrixs[i][j] = Integer.valueOf(data[j]);
  15. visit[i][j] = 0;
  16. if (matrixs[i][j] == -1) {
  17. oilStations.put(String.valueOf(i) + String.valueOf(j), Integer.MAX_VALUE);
  18. }
  19. }
  20. }
  21. int startX = 0;
  22. int startY = 0;
  23. int endX = m - 1;
  24. int endY = n - 1;
  25. Path startPath = new Path(startX, startY, matrixs[0][0], 100 - matrixs[0][0]);
  26. startPath.originalOil = 100;
  27. visit[0][0] = 1;
  28. Queue<Path> queue = new LinkedList<>();
  29. queue.offer(startPath);
  30. List<Integer> needOil = new ArrayList<>();
  31. boolean hasRoote = false;
  32. int dirctions[][] = {{-1, 0}, {0, -1}, {1, 0}, {0, 1}};
  33. // BFS
  34. while (!queue.isEmpty()) {
  35. Path frontPath = ((LinkedList<Path>) queue).getFirst();
  36. if (frontPath.x == endX && frontPath.y == endY) {
  37. hasRoote = true;
  38. ((LinkedList<Path>) queue).pollFirst();
  39. continue;
  40. }
  41. for (int i = 0; i < 4; i++) {
  42. int newX = frontPath.x + dirctions[i][0];
  43. int newY = frontPath.y + dirctions[i][1];
  44. if (newX >= 0 && newX < m && newY >= 0 && newY < n) {
  45. System.out.println("newX " + newX + " newY " + newY);
  46. if (newX == 3 && newY == 3) {
  47. System.out.println("error0");
  48. }
  49. if (newX == endX && newY == endY) { // 下一个是终点
  50. Path endPath = new Path(newX, endY, matrixs[newX][newX], frontPath.getRestOil() - matrixs[newX][newX]);
  51. if (endPath.restOil < 0) { // 油不足以走到终点
  52. continue;
  53. } else {
  54. if (frontPath.hasAddOil) { //加过油
  55. endPath.originalOil = frontPath.originalOil;
  56. } else {//全程没有加过油 并且有多的油
  57. endPath.originalOil = frontPath.originalOil - endPath.restOil;
  58. }
  59. needOil.add(endPath.originalOil);
  60. hasRoote = true;
  61. queue.offer(endPath);
  62. continue;
  63. }
  64. }
  65. if (matrixs[newX][newY] != 0 && matrixs[newX][newY] != -1 && visit[newX][newY] == 0) { //下一个是一般道路
  66. Path nextPath = new Path(newX, newY, matrixs[newX][newY],
  67. frontPath.getRestOil() - matrixs[newX][newY]);
  68. if (nextPath.restOil < 0) { // 油不足以走到终点
  69. continue;
  70. } else {
  71. nextPath.hasAddOil = frontPath.hasAddOil;
  72. if (frontPath.hasAddOil) {//加过油
  73. nextPath.originalOil = frontPath.originalOil;
  74. } else { //没加过油 需要的油就要加上当前道路需要的油
  75. nextPath.originalOil = frontPath.originalOil;
  76. }
  77. }
  78. if (nextPath.x == 3 && nextPath.y == 3) {
  79. System.out.println("error");
  80. }
  81. queue.offer(nextPath);
  82. visit[newX][newY] = 1;
  83. continue;
  84. }
  85. if (matrixs[newX][newY] == 0) {
  86. visit[newX][newY] = 1;
  87. continue;
  88. }
  89. if (matrixs[newX][newY] == -1 && visit[newX][newY] == 0) { // 到加油站了,这个题明显到加油站都得加满油
  90. Integer prsentLeastOil = oilStations.get(String.valueOf(newX) + String.valueOf(newY));
  91. if (frontPath.restOil >= prsentLeastOil) {
  92. continue;
  93. }
  94. oilStations.put(String.valueOf(newX) + String.valueOf(newY), frontPath.restOil);
  95. Path nextPath = new Path(newX, newY, matrixs[newX][newY],
  96. 100);// 加油站直接加满油
  97. nextPath.hasAddOil = true;
  98. if (!frontPath.hasAddOil) {// 前面没有加过油
  99. nextPath.originalOil = frontPath.originalOil - frontPath.restOil;// 需要的油应该是前车需要的油料减去前车剩余油料,因为初始化是100
  100. } else { // 前面已经加过油
  101. nextPath.originalOil = frontPath.originalOil;
  102. }
  103. visit[newX][newY] = 0; //加油站不设置访问标记 通过判断到加油站剩余油料是最少得来判断是否将当前数据加入队列,继续扫描
  104. if (nextPath.x == 3 && nextPath.y == 3) {
  105. System.out.println("error1");
  106. }
  107. queue.offer(nextPath);
  108. continue;
  109. }
  110. }
  111. }
  112. ((LinkedList<Path>) queue).pollFirst(); //首元素推出队列
  113. }
  114. if (hasRoote) {
  115. Collections.sort(needOil);
  116. System.out.println(needOil.get(0));
  117. } else {
  118. System.out.println(-1);
  119. }
  120. }
  121. private static class Path {
  122. int x;
  123. int y;
  124. int needOil;
  125. int restOil;
  126. int originalOil;
  127. boolean hasAddOil;//是否加过油
  128. public Path(int x, int y, int needOil) {
  129. this.x = x;
  130. this.y = y;
  131. this.needOil = needOil;
  132. }
  133. public Path(int x, int y, int needOil, int restOil) {
  134. this.x = x;
  135. this.y = y;
  136. this.needOil = needOil;
  137. this.restOil = restOil;
  138. }
  139. public int getX() {
  140. return x;
  141. }
  142. public void setX(int x) {
  143. this.x = x;
  144. }
  145. public int getY() {
  146. return y;
  147. }
  148. public void setY(int y) {
  149. this.y = y;
  150. }
  151. public int getNeedOil() {
  152. return needOil;
  153. }
  154. public void setNeedOil(int needOil) {
  155. this.needOil = needOil;
  156. }
  157. public int getRestOil() {
  158. return restOil;
  159. }
  160. public void setRestOil(int restOil) {
  161. this.restOil = restOil;
  162. }
  163. public Path(int originalOil) {
  164. this.originalOil = originalOil;
  165. }
  166. public Path(boolean hasAddOil) {
  167. this.hasAddOil = hasAddOil;
  168. }
  169. }
  170. }

验证:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/557981
推荐阅读
相关标签
  

闽ICP备14008679号