so easy
2024-08-20 11:01:03
发布于:广东
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
const int N = 110;
int n, m;
char a[N][N];
bool vis[N][N];
int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0};
struct node{
int x, y, step;
}l, r;
int bfs(int x, int y, int step){
queue<node> q;
vis[x][y] = 1;
q.push({x, y});
while(q.size()){
l = q.front();
q.pop();
for(int i = 0; i < 4; i++){
int nx = l.x + dir[i][0];
int ny = l.y + dir[i][1];
int step = l.step;
if(nx >= 1 && ny >= 1 && nx <= n && ny <= m && !vis[nx][ny] && a[nx][ny] == '.'){
vis[nx][ny] = 1;
q.push({nx, ny, step + 1});
}
if(a[nx][ny] == 'T'){
return step + 1;
}
}
}
return -1;
}
int main(){
cin >> n >> m;
memset(vis, 0, sizeof vis);
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
cin >> a[i][j];
}
}
int s, t;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
if(a[i][j] == 'S'){
s = i;
t = j;
}
}
}
cout << bfs(s, t, 0);
return 0;
}
这里空空如也
有帮助,赞一个