思路:从给定的点进行bfs,搜索到位于边界上的‘D’就停止,每次取一下最小值。
AC代码:
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <queue>
#define ll long long
#define lowbit(x) ((~x+1)&x)
#define inf 0x3f3f3f3f
using namespace std;
struct node{
int x,y;
int dist;
}pos;
int mp[1550][1550],n,m,r,c,ans;
int vis[1550][1550];
char str[1550][1550];
int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};
void bfs() {
pos.x = r,pos.y=c,pos.dist=1;
for(int i=0; i<=405; i++) {
for(int j=0; j<=405; j++) {
mp[i][j] = inf;
}
}
vis[r][c]=1;
mp[r][c]=1;
queue<node>q;
q.push(pos);
while(!q.empty()) {
struct node t = q.front();
q.pop();
int dx=t.x,dy=t.y;
if(dx==n||dx==1||dy==m||dy==1) {
ans=min(ans,mp[dx][dy]);
}
for(int i=0; i<4; i++) {
int tx,ty;
tx=dx+dir[i][0];
ty=dy+dir[i][1];
if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&str[tx][ty]!='#') {
struct node nxt;
if(str[tx][ty]=='D') pos.dist=t.dist;
else pos.dist=t.dist+1;
if(mp[tx][ty]>pos.dist) {
mp[tx][ty]=pos.dist;
pos.x=tx;
pos.y=ty;
q.push(pos);
}
}
}
}
cout<<ans<<endl;
}
int main() {
ios::sync_with_stdio(false);
cin>>n>>m;
ans = inf;
for(int i=1; i<=n; i++) {
for(int j=1; j<=m; j++) {
cin>>str[i][j];
}
}
cin>>r>>c;
bfs();
return 0;
}
这个代码不知道哪错了,快把我逼疯了,++!如有大佬发现,请指正,谢谢!!
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <queue>
#define ll long long
#define lowbit(x) ((~x+1)&x)
#define inf 0x3f3f3f3f
using namespace std;
struct node{
int x,y;
int dist;
}pos;
int mp[1550][1550],n,m,r,c,ans;
int vis[1550][1550];
char str[1550][1550];
int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};
void bfs() {
pos.x = r,pos.y=c,pos.dist=1;
for(int i=0; i<=405; i++) {
for(int j=0; j<=405; j++) {
mp[i][j] = inf;
}
}
vis[r][c]=1;
mp[r][c]=1;
queue<node>q;
q.push(pos);
while(!q.empty()) {
struct node t = q.front();
q.pop();
int dx=t.x,dy=t.y;
if(dx==n||dx==1||dy==m||dy==1) {
ans=min(ans,mp[dx][dy]);
}
for(int i=0; i<4; i++) {
int tx,ty;
tx=dx+dir[i][0];
ty=dy+dir[i][1];
if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&str[tx][ty]!='#') {
struct node nxt;
if(!vis[tx][ty]) {
vis[tx][ty]=1;
nxt.x=tx,nxt.y=ty;
if(str[tx][ty]=='c')
mp[tx][ty] = mp[dx][dy]+1;
else mp[tx][ty] = mp[dx][dy];
q.push(nxt);
}
else if(vis[tx][ty]) {
if(mp[dx][dy]+1<mp[tx][ty]) {
mp[tx][ty] = mp[dx][dy]+1;
q.push(nxt);
}
}
}
}
}
cout<<ans<<endl;
}
int main() {
ios::sync_with_stdio(false);
cin>>n>>m;
ans = inf;
for(int i=1; i<=n; i++) {
for(int j=1; j<=m; j++) {
cin>>str[i][j];
}
}
cin>>r>>c;
bfs();
return 0;
}