坦克大战

坦克大战

大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。

坦克大战

时间限制:
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 4
YBEB
EERE
SSTE
0 0
例子输出
8
题解:採用优先队列+广度优先遍历,求从地图上的Y走到T的最小步数,当中S和R不能走。B要走两步,E要走一步 
     优先队列基础知识:http://blog.csdn.net/zchlww/article/details/39803511
                     http://blog.csdn.net/zchlww/article/details/39803463
#include <cstdio>
#include <cstring>
#include <queue>
using std::priority_queue;
int m, n;
char map[302][302];//表示地图 
bool vis[302][302];//表示訪问标志位 
struct Node{
  int x, y, steps;
  friend bool operator<(Node a, Node b)
  {//改变优先级,因为优先队列默认是大的数字优先级高                                                    
    return a.steps > b.steps;//如今改为step小的优先级高。符合题意  
  }
} you, tar;
int mov[][2] = {0, 1, 0, -1, 1, 0, -1, 0};
priority_queue<Node> PQ;//定义优先队列的变量 
int check(Node a){
  if(a.x < 0 || a.y < 0 || a.x >= m || a.y >= n)
    return 0;
  if(vis[a.x][a.y]) return 0;
  if(map[a.x][a.y] == 'B') return 2;
  if(map[a.x][a.y] == 'E') return 1;
  if(map[a.x][a.y] == 'T') return 1;
  return 0;
}

int BFS(){//广度优先遍历 
  Node temp, sta;
  int count;
  vis[you.x][you.y] = 1;
  PQ.push(you);
  while(!PQ.empty())
  {
    sta = temp = PQ.top(); PQ.pop();
    for(int i = 0; i < 4; ++i)
    {
      temp.x += mov[i][0];
      temp.y += mov[i][1];
      if(count = check(temp))
      {
        temp.steps += count;
        if(map[temp.x][temp.y] == 'T') 
          return temp.steps;
        vis[temp.x][temp.y] = 1;
        PQ.push(temp);
      }
      temp = sta;
    }
  }
  return -1;
}
 
int main(){
  while(scanf("%d%d", &m, &n), m || n){
    for(int i = 0; i < m; ++i)
    {
      scanf("%s", map[i]);
      for(int j = 0; j < n; ++j)
        if(map[i][j] == 'Y') you.x = i , you.y = j;
        else if(map[i][j] == 'T') tar.x = i , tar.y = j; 
    }
    memset(vis, 0, sizeof(vis));
    while(!PQ.empty()) PQ.pop();
    printf("%d\n", BFS());
  }
  return 0;
}

版权声明:本文博客原创文章,博客,未经同意,不得转载。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/117420.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • java面向对象三大特征及五大原则

    java面向对象三大特征及五大原则java面向对象一、java面向对象的三大特征1、封装(Encapsulation)封转是指属性私有化根据需要提供setter和getter方法来访问属性隐藏具体属性和实现细节,仅对外开放接口控制程序中属性的访问级别目的:增强数据安全性,不能让其他用户随意访问和修改数据,简化编程,使用者不必在意具体实现细节,而只是通过外部接口即可访问类的成员2、继承(Extend)继承是指将…

    2022年7月25日
    4
  • it创业怎么起步_典型it项目有哪些

    it创业怎么起步_典型it项目有哪些之前是一个想法,现在已经进入创业阶段,所以这个系列的标题,改了。众筹的事在今天也停止了。7-9号会在深圳龙岗布吉参加一个风投对接的活动,今晚(6号)会出发。因为:在深圳会呆几天,而且这个会估计有很多内

    2022年8月5日
    2
  • Entity Framework 在Vs2012下Update Model From DataBase 失败的问题

    Entity Framework 在Vs2012下Update Model From DataBase 失败的问题

    2021年8月28日
    47
  • 三维重建技术概述_CT三维重建不包括

    三维重建技术概述_CT三维重建不包括基于视觉的三维重建,指的是通过摄像机获取场景物体的数据图像,并对此图像进行分析处理,再结合计算机视觉知识推导出现实环境中物体的三维信息。1.相关概念(1)彩色图像与深度图像彩色图像也叫作RGB图像,R、G、B三个分量对应于红、绿、蓝三个通道的颜色,它们的叠加组成了图像像素的不同灰度级。RGB颜色空间是构成多彩现实世界的基础。深度图像又被称为距离图像,与灰度图像中像素点存储亮度值不同,其像素点存储的

    2022年10月31日
    0
  • 大数据经典案例有哪些?

    大数据经典案例有哪些?“互联网还没搞清楚的时候,移动互联就来了移动互联还没搞清楚的时候,大数据就来了”。近两年,“大数据”这个词越来越为大众所熟悉,“大数据”一直是以高冷的形象出现在大众面前,面对大数据,相信许多人都一头雾水。下面我们通过几个经典案例,让大家实打实触摸一把“大数据”。你会发现它其实就在身边而且也是很有趣的。1.啤酒与尿布全球零售业巨头沃尔玛在对消费者购物行为分析时发现,男性顾客在购买婴儿尿片时,常常会顺便搭配几瓶啤酒来犒劳自己,于是尝试推出了将啤酒和尿布摆在一起的促销手段。没想到这个举措居然使尿布

    2022年5月2日
    44
  • RedisTemplate操作Redis,这一篇文章就够了(一)[通俗易懂]

    RedisTemplate操作Redis,这一篇文章就够了(一)[通俗易懂]RedisTemplate操作Redis,这一篇文章就够了(一)StringRedisTemplate和RedisTemplate的区别(二)StringRedisTemplate的一个小案例(三)

    2022年6月21日
    35

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号