openjudge 2312:Battle City
北大 计算机 2013研究生推免上机考试(校外) F题
OJ链接:http://bailian.openjudge.cn/practice/2312/
源代码:
#include<bits/stdc++.h>
using namespace std;
int dy[4]={-1,0,0,1};
int dx[4]={0,1,-1,0};
struct N{
int x,y;
int t;
};
bool operator < (const N &a, const N &b) //优先队列,队头为最优解。即花费最少
{
return a.t > b.t;
}
priority_queue<N> Q;
//queue<N> Q;
char maze[350][350];
bool mark[350][350];
int m,n;
int tx,ty;//记录终点的坐标
int sx,sy;//记录起点
int BFS(int a,int b){
while(Q.empty()==false){
N now=Q.top();
Q.pop();
for(int i=0;i<4;i++){
int nx=now.x+dx[i];
int ny=now.y+dy[i];
if(nx<0 || nx>=m || ny<0 || ny>=n) continue;
if(maze[nx][ny]=='S' || maze[nx][ny]=='R') continue;
if(mark[nx][ny]==true) continue;
N tmp;
tmp.x=nx;
tmp.y=ny;
if(maze[nx][ny]=='E' || maze[nx][ny]=='T'){
tmp.t=now.t+1;
}
if(maze[nx][ny]=='B'){
tmp.t=now.t+2;
}
Q.push(tmp);
mark[nx][ny]=true;
if(nx==tx && ny==ty) return tmp.t;
}
}
return -1;
}
int main(){
while(cin>>m>>n && m!=0 && n!=0){
for(int i=0;i<m;i++){
for(int j=0;j<n;j++){
cin>>maze[i][j];
if(maze[i][j]=='Y'){
sx=i;
sy=j;
}
if(maze[i][j]=='T'){
tx=i;
ty=j;
}
mark[i][j]=false;
}
}
while(Q.empty()==false) Q.pop();
mark[sx][sy]=true;
N tmp;
tmp.x=sx;
tmp.y=sy;
tmp.t=0;
Q.push(tmp);
int ans=BFS(sx,sy);
cout<<ans<<endl;
}
return 0;
}