【题解】【洛谷P1126】 机器人搬重物

P1126 机器人搬重物

传送门


这道题本来没啥好说的,但细节实在比较多,被坑了好多次。

  1. 首先输入的是格子图,需要转化成点图,具体操作是a[i][j]=a[i-1][j-1]=a[i][j-1]=a[i-1][j]=1
  2. 最坑的一个点在于,平时写宽搜的时候,遇到出边界或者不能访问的点时,都是直接进入下一层循环(continue),但在这道题中,由于可以走1~3步,那么当路径上出现障碍时,则不能进行下一轮循环,需要break。

代码:


  
  1. #include <bits/stdc++.h>
  2. #define MAX 55
  3. using namespace std;
  4. int mod(int x){
  5. return (x+4)%4;
  6. }
  7. struct pt{
  8. int x, y, dir, step;
  9. pt(){}
  10. pt(int a, int b, int c, int d):x(a), y(b), dir(c), step(d){}
  11. };
  12. const int movx[] = {0,1,0,-1}, movy[] = {1,0,-1,0};
  13. int a[MAX][MAX];
  14. bool vis[MAX][MAX][5];
  15. int n, m;
  16. pt st, ed;
  17. void bfs(){
  18. queue<pt> q;
  19. bool flag = false;
  20. st.step = 0;
  21. q.push(st);
  22. vis[st.x][st.y][st.dir] = true;
  23. while(!q.empty()){
  24. pt t = q.front();
  25. q.pop();
  26. if(t.x == ed.x && t.y == ed.y){
  27. cout << t.step << endl;
  28. flag = true;
  29. break;
  30. }
  31. for(int i = 1; i <= 3; i++){
  32. int u, v;
  33. u = t.x + i*movx[t.dir];
  34. v = t.y + i*movy[t.dir];
  35. if(u<=0 || u>=n || v<=0 || v>=m || a[u][v] == 1){
  36. break;
  37. }
  38. if(vis[u][v][t.dir]){
  39. continue;
  40. }
  41. vis[u][v][t.dir] = true;
  42. q.push(pt(u, v, t.dir, t.step+1));
  43. }
  44. if(!vis[t.x][t.y][mod(t.dir+1)]){
  45. vis[t.x][t.y][mod(t.dir+1)] = true;
  46. q.push(pt(t.x, t.y, mod(t.dir+1), t.step+1));
  47. }
  48. if(!vis[t.x][t.y][mod(t.dir-1)]){
  49. vis[t.x][t.y][mod(t.dir-1)] = true;
  50. q.push(pt(t.x, t.y, mod(t.dir-1), t.step+1));
  51. }
  52. }
  53. if(!flag){
  54. cout << -1 << endl;
  55. }
  56. }
  57. int main()
  58. {
  59. cin >> n >> m;
  60. for(int i = 1; i <= n; i++){
  61. for(int j = 1; j <= m; j++){
  62. scanf("%d", &a[i][j]);
  63. if(a[i][j] == 1){
  64. a[i-1][j-1] = a[i-1][j] = a[i][j-1] = 1;
  65. }
  66. }
  67. }
  68. cin >> st.x >> st.y >> ed.x >> ed.y;
  69. char c;
  70. cin >> c;
  71. switch(c){
  72. case 'E':
  73. st.dir = 0; break;
  74. case 'S':
  75. st.dir = 1; break;
  76. case 'W':
  77. st.dir = 2; break;
  78. case 'N':
  79. st.dir = 3; break;
  80. }
  81. bfs();
  82. return 0;
  83. }

 

文章来源: blog.csdn.net,作者:JokerJim,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_30115697/article/details/85987667

(完)