Tank Battle (bfs + Priority Queue)

Tank Wars
Time Limit: 1000 ms | Memory Limit: 65535 KB
Difficulty: 3

描述
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

Sample output

8
#include<stdio.h>
#include<algorithm>
#include<iostream>
#include<queue>
#include<string.h>

using namespace std;
struct LNode
{
    int x,y;
    int step;
    LNode()
    {
        step = 0;
    }
    bool operator < (const LNode &a) const
    {
        return a.step < step;//这样出来的顺序是从小到大
    }
};
int dirx[4] = {-1,0,1,0};
int diry[4] = {0,1,0,-1};
char mp[307][307];//地图
int vis[307][307];//是否被访问
int sx ,sy ,ex,ey;
int h,w;//高度 和 宽度
int bfs()
{
    priority_queue<LNode> Q;//优先级队列 让每次step最小的 先出来 
    LNode now ;
    now.x = sx;
    now.y = sy;
    now.step = 0;
    Q.push(now);
    vis[sx][sy] = 1;
    while(!Q.empty())
    {
        now = Q.top();
        Q.pop();
        if(now.x == ex && now.y == ey) return now.step;
        for(int i = 0;i<4;i++)
        {
            int x = now.x + dirx[i];
            int y = now.y + diry[i];
            if(x < 0 || x >= h ||y < 0 || y >= w) continue;
            if(!vis[x][y] && (mp[x][y] !='S' &&  mp[x][y] != 'R'))
            {
                LNode next ;
                next.x = x;
                next.y = y;
                if(mp[x][y] == 'B')
                {
                    next.step = now .step + 2;
                }
                else
                {
                    next.step = now.step + 1;
                }
                Q.push(next);
                vis[x][y] = 1;
            }
        }
    }
    return -1;
}
int main()
{
    while(scanf("%d%d",&h,&w) != EOF)
    {
        if(h == 0 && w == 0 ) break;
        memset(vis,0,sizeof(vis));
        for(int i =0;i<h;i++)
        {
            scanf("%s",mp[i]);
            for(int j = 0;j<w;j++)
            {
                if(mp[i][j] == 'Y')
                {
                    sx = i,sy = j;
                }
                if(mp[i][j] == 'T')
                {
                    ex = i,ey = j;
                }
            }
        }
        int step = bfs();
        printf("%d\n",step);
    }
    return 0;
}

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324689841&siteId=291194637