dfs迷宫搜索 解救小哈 ---- 啊哈算法
【摘要】
//
// Created by jal on 18-9-2.
//
#include <bits/stdc++.h>
using namespace std;
int a[50][50];...
//
// Created by jal on 18-9-2.
//
#include <bits/stdc++.h>
using namespace std;
int a[50][50];
int book[50][50];
int end_x, end_y;
int result = 0x7fffffff;
int dir[4][2] = {0,1,0,-1,1,0,-1,0};
int n,m;
void dfs(int x, int y, int step){
if(x == end_x && y == end_y){
result = min(result, step);
return;
}
for(int k = 0; k < 4; k++){
int tx = x + dir[k][0];
int ty = y + dir[k][1];
if(tx >= n || ty >= m || tx < 0 || ty < 0 || a[tx][ty] == 1)continue;
a[tx][ty] = 1;
dfs(tx,ty,step+1);
a[tx][ty] = 0;
}
}
int main() {
cin >> n >> m;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cin >> a[i][j];
}
}
int x,y;
cin >> x >> y >> end_x >> end_y;
dfs(x, y, 0);
cout << result << endl;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
input:
5 4
0 0 1 0
0 0 0 0
0 0 1 0
0 1 0 0
0 0 0 1
0 0 3 2
output:
7
文章来源: blog.csdn.net,作者:爱玲姐姐,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jal517486222/article/details/82316829
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)