解题思路:
参考其他的BFS模板题目,此题目类似
参考代码:
#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0) using namespace std; const int maxn=105; char mp[maxn][maxn]; int vis[maxn][maxn]; const int dir[4][2]= {0,1,0,-1,1,0,-1,0}; //方向向量 右,左,下,上 int n,m; int out_x,out_y; struct state { int x,y; int step; }; bool check(state s) { if(!vis[s.x][s.y]&&s.x<n&&s.y<m&&s.x>=0&&s.y>=0) { return true; } return false; } int bfs(state st) { queue<state> q; state now,next; st.step=0; q.push(st); vis[st.x][st.y]=1; while(!q.empty()) { now=q.front(); if(now.x==out_x&&now.y==out_y) { return now.step; } for(int i=0; i<4; i++) { next.x=now.x+dir[i][0]; next.y=now.y+dir[i][1]; next.step=now.step+1; if(check(next)) { q.push(next); vis[next.x][next.y]=1; } } //state temp=q.front(); //printf("%d %d %d\n",temp.x,temp.y,temp.step); q.pop(); } return -1; } int main() { //hh; state st; memset(mp,0,sizeof(mp)); memset(vis,0,sizeof(vis)); cin>>n>>m; for(int i=0; i<n; i++) { for(int j=0; j<m; j++) { cin>>mp[i][j]; if(mp[i][j]=='@') { st.x=i; st.y=j; st.step=0; } if(mp[i][j]=='*') { out_x=i,out_y=j; } if(mp[i][j]=='#') { vis[i][j]=1; } } } int ans=bfs(st); if(ans!=-1){ cout<<ans<<endl; }else{ cout<<"Impossibility!"<<endl; } /*for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cout<<vis[i][j]<<' '; } cout<<endl; } */ return 0; }
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1166 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1045 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1273 |
本人酷爱递归实现很多问题,这里也是浏览:632 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:701 |
最小公倍数 (C语言代码)浏览:1105 |
1012题解浏览:938 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:724 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |