POJ 2312 NYOJ284 【坦克大戰】優先隊列BFS

Description

Many of us had played the game "Battle city" in our childhood, and some people (like me) even often play it on computer now. 

What we are discussing is a simple edition of this game. Given a map that consists of empty spaces, rivers, steel walls and brick walls only. Your task is to get a bonus as soon as possible suppose that no enemies will disturb you (See the following picture). 

Your tank can't move through rivers or walls, but it can destroy brick walls by shooting. A brick wall will be turned into empty spaces when you hit it, however, if your shot hit a steel wall, there will be no damage to the wall. In each of your turns, you can choose to move to a neighboring (4 directions, not 8) empty space, or shoot in one of the four directions without a move. The shot will go ahead in that direction, until it go out of the map or hit a wall. If the shot hits a brick wall, the wall will disappear (i.e., in this turn). Well, given the description of a map, the positions of your tank and the target, how many turns will you take at least to arrive there?

輸入 The input consists of several test cases. The first line of each test case contains two integers M and N (2 <= M, N <= 300). Each of the following M lines contains N uppercase letters, each of which is one of 'Y' (you), 'T' (target), 'S' (steel wall), 'B' (brick wall), 'R' (river) and 'E' (empty space). Both 'Y' and 'T' appear only once. A test case of M = N = 0 indicates the end of input, and should not be processed.
輸出 For each test case, please output the turns you take at least in a separate line. If you can't arrive at the target, output "-1" instead.
樣例輸入
3 4
YBEB
EERE
SSTE
0 0
樣例輸出
8



和上一篇一樣。

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include<queue>
using namespace std;
#define MAXN 310
int h[MAXN][MAXN];
char g[MAXN][MAXN];
int dx[4]= {1,0,-1,0};
int dy[4]= {0,1,0,-1};
struct point
{
    int x,y,step;
    friend    bool operator <(const point &a,const point &b)
    {
        return (a.step<b.step?0:1);
    }
};
int dfs(point begin,point end,int m,int n,char g[][MAXN])
{
    int x,y,i,step;
    point now,tmp;
    memset(h,-1,sizeof(h));
    h[begin.x][begin.y]=0;
    priority_queue<point>q;
    q.push(begin);
    while(!q.empty())
    {
        now=q.top();
        q.pop();
        for(i=0; i<4; i++)
        {
            x=now.x+dx[i];
            y=now.y+dy[i];
            if(x<0||y<0||x>=m||y>=n) continue;
            if(g[x][y]=='S'||g[x][y]=='R')continue;
            if(g[x][y]=='B')
            {
                tmp.x=x;
                tmp.y=y;
                tmp.step=now.step+2;
                if(h[x][y]>tmp.step||h[x][y]==-1)
                {
                    q.push(tmp);
                    h[x][y]=tmp.step;
                }
            }
            if(g[x][y]=='E'||g[x][y]=='T')
            {
                tmp.x=x;
                tmp.y=y;
                tmp.step=now.step+1;
                if(h[x][y]>tmp.step||h[x][y]==-1)
                {
                    q.push(tmp);
                    h[x][y]=tmp.step;
                }
            }
        }
    }
    return 0;
}
int main()
{
    point begin,end;
    int m,n,i,j;
    while (scanf("%d%d",&m,&n),!(m==0&&n==0))
    {
        for (i=0; i<m; i++)
            scanf("%s",g[i]);
        for (i=0; i<m; i++)
            for (j=0; j<n; j++)
            {
                if (g[i][j]=='Y')
                {
                    begin.x=i;
                    begin.y=j;
                    begin.step=0;
                }
                if (g[i][j]=='T')
                {
                    end.x=i;
                    end.y=j;
                }
            }
        dfs(begin,end,m,n,g);
        printf("%d\n",h[end.x][end.y]);
    }

    return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章