博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2312 Battle City
阅读量:5248 次
发布时间:2019-06-14

本文共 3507 字,大约阅读时间需要 11 分钟。

题目连接

  

Battle City

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?

Input

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.

Output

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.

Sample Input

3 4

YBEB
EERE
SSTE
0 0

Sample Output

8

bfs+优先队列。。

#include
#include
#include
#include
#include
#include
#include
#include
using std::set;using std::sort;using std::pair;using std::swap;using std::multiset;using std::priority_queue;#define pb(e) push_back(e)#define sz(c) (int)(c).size()#define mp(a, b) make_pair(a, b)#define all(c) (c).begin(), (c).end()#define iter(c) decltype((c).begin())#define cls(arr, val) memset(arr, val, sizeof(arr))#define cpresent(c, e) (find(all(c), (e)) != (c).end())#define rep(i, n) for(int i = 0; i < (int)n; i++)#define tr(c, i) for(iter(c) i = (c).begin(); i != (c).end(); ++i)const int N = 310;const int INF = 0x3f3f3f3f;typedef unsigned long long ull;char G[N][N];bool vis[N][N];int H, W;const int dx[] = { 0, 0, -1, 1 }, dy[] = { -1, 1, 0, 0 };struct P { int x, y, s; P(int i = 0, int j = 0, int k = 0) :x(i), y(j), s(k) {} inline bool operator<(const P &t) const { return s > t.s; }}S;int bfs() { priority_queue

q; q.push(S); vis[S.x][S.y] = true; while (!q.empty()) { P t = q.top(); q.pop(); rep(i, 4) { int x = t.x + dx[i], y = t.y + dy[i]; if (x < 0 || x >= H || y < 0 || y >= W) continue; if (vis[x][y] || G[x][y] == 'R' || G[x][y] == 'S') continue; if (G[x][y] == 'E') { q.push(P(x, y, t.s + 1)); vis[x][y] = true; } if (G[x][y] == 'B') { vis[x][y] = true; q.push(P(x, y, t.s + 2)); } if (G[x][y] == 'T') return t.s + 1; } } return -1;}int main() {#ifdef LOCAL freopen("in.txt", "r", stdin); freopen("out.txt", "w+", stdout);#endif while (~scanf("%d %d", &H, &W), H + W) { rep(i, H) { scanf("%s", G[i]); rep(j, W) { if (G[i][j] == 'Y') S.x = i, S.y = j; vis[i][j] = false; } } printf("%d\n", bfs()); } return 0;}

转载于:https://www.cnblogs.com/GadyPu/p/4779362.html

你可能感兴趣的文章
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>