坦克大战

来源:互联网 发布:同程网络 编辑:程序博客网 时间:2024/03/29 13:56

坦克大战

时间限制:1000 ms  |  内存限制:65535 KB
难度: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 4YBEBEERESSTE0 0
样例输出
8




因为每次遇到‘B'时步数加2,所以先到达的可能不是最小的步数,所以用优先队列;


  #include<stdio.h>#include<iostream>#include<string.h>using namespace std;#include<queue>int M,N, Erow, Ecol;char map[310][310];int dir[4][2] = {{0, 1},{0,-1},{1,0},{-1,0}};bool visited[310][310], flag;typedef struct{int r;int c;int step;}Node;bool operator<(const Node &a, const Node &b){return (a.step > b.step);}priority_queue<Node>q;void bfs(){Node p, t;int i;while(!q.empty()){p = q.top();if(p.r == Erow && p.c == Ecol){flag = 1;printf("%d\n", p.step);return;}q.pop();for(i = 0; i < 4; i++){t.r = p.r + dir[i][0];t.c = p.c + dir[i][1];if(t.r >= 0 && t.c >= 0 && t.r < M && t.c < N && !visited[t.r][t.c] && map[t.r][t.c] != 'S' && map[t.r][t.c] != 'R'){visited[t.r][t.c] = 1;if(map[t.r][t.c] == 'B'){t.step = p.step + 2;}else{t.step = p.step + 1;}q.push(t);}}}}int main(){int i, j;Node p;while(scanf("%d%d", &M, &N), M || N){while(!q.empty())q.pop();flag = 0;memset(visited, 0, sizeof(visited));memset(map, 0, sizeof(map));for(i = 0; i < M; i++){scanf("%s", map[i]);for(j = 0; j < N; j++){if(map[i][j] == 'Y'){p.r = i;p.c = j;p.step = 0;                     visited[i][j] = 1;q.push(p);}if(map[i][j] == 'T'){Erow = i;Ecol = j;}}}bfs();if(flag == 0){printf("-1\n");}}return 0;}                


0 0
原创粉丝点击