openjudge 2312:Battle City

4 篇文章 0 订阅
2 篇文章 0 订阅

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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值