博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
广搜——三维迷宫
阅读量:6710 次
发布时间:2019-06-25

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

[题目大意]:           给出一三维空间的地牢,要求求出由字符'S'到字符'E'的最短路径(注意只能走字符为'.'的点),移动方向可以是上,下,左,右,前,后,六个方向!每移动一次就耗费一分钟,要求输出最快的走出时间。

[输入]: 第一行是三个整数,代表地牢的层数及每层的长与宽,以下各行是各层的地图

[样例] 3 4 5           S....           .###.           .##..           ###.#

          #####           #####           ##.##             ##...

#####           #####           #.###           ####E

1 3 3           S##           #E#           ###

0 0 0

Sample Output

Escaped in 11 minute(s).   Trapped!    [解题分析]:

一个点到另外一个点的最小步数,直接用广搜,第一次搜到另外一个点时的步数即为最小步数!

import java.util.*;class  point {//三层地牢中点的坐标    int x;    int y;    int z;    int step;//从入口到这点的时间  public point(int x,int y,int z,int step){    this.x=x;    this.y=y;    this.z=z;    this.step=step;  } public int  getX(){   return this.x; }  public int getY(){   return this.y; }public int getZ(){  return this.z; } public int getStep(){   return this.step;}       }public class Main {  //移动方向可以是上,下,左,右,前,后,六个方向 static int dir[][] = {
{1, 0, 0}, {0, 1, 0}, {0, 0, 1}, {-1, 0, 0}, {0, -1, 0}, {0, 0, -1}}; char map[][][];//三维地图,有三层 int R, L, C; public Main(char map[][][],int L,int R,int C){ this.map=map; this.L=L; this.R=R; this.C=C;}int bfs(int x, int y, int z) {//广度优先搜索 ArrayList< point> queue=new ArrayList< point>();//用ArrayList当作队列用 queue.add(new point(x,y,z,0)); while(queue.size()!=0) { for(int i = 0; i < 6; i++) {//从六个方向搜索 //队头元素出队; point head=queue.get(0); int a = head.x + dir[i][0]; int b = head.y + dir[i][1]; int c = head.z + dir[i][2]; if(a >= 0 && a < L && b >= 0 && b < R && c >= 0 && c < C && map[a][b][c] == 'E') return head.step + 1;//找到出口 if(a >= 0 && a < L && b >= 0 && b < R && c >= 0 && c < C && map[a][b][c] != '#') { //元素入队; queue.add(new point(a,b,c,head.step+1));//该位置可走 map[a][b][c] = '#';//标记该处已经走过 } } queue.remove(0); } return -1;} public static void main(String[] args){ Scanner in = new Scanner(System.in); int a, b, c; int L1,R1,C1; while(in.hasNext()) { L1=in.nextInt(); R1=in.nextInt(); C1=in.nextInt(); if(L1==0&&R1==0&&C1==0) break; a = b = c = 0; char map1[][][]=new char[L1][R1][C1]; for(int i = 0; i < L1; i++) for(int j = 0; j < R1; j++){ map1[i][j]=in.next().toCharArray(); for(int k=0;k< C1;k++){ if(map1[i][j][k] == 'S') {//找到入口位置; a = i; b = j; c = k; } } } Main m=new Main(map1,L1,R1,C1); int sum = m.bfs(a, b, c); if(sum != -1) System.out.printf("Escaped in %d minute(s).\n", sum); else System.out.printf("Trapped!\n"); } }}

转载于:https://www.cnblogs.com/xiaoying1245970347/p/3177255.html

你可能感兴趣的文章
Sword protobuf学习四
查看>>
oracle实用sql之将逗号分割的字符串分割多个列
查看>>
leetcode 4. Median of Two Sorted Arrays
查看>>
前端建立一个本地服务器:browser-sync
查看>>
php的类型运算符instanceof(用于确定一个 PHP 变量是否属于某一类 class 的实例)
查看>>
VMWare Station 问题汇总
查看>>
JQuery判断input是否被禁用
查看>>
ftp、ssh
查看>>
SCSI接口和SAS接口的区别
查看>>
How to install maps and addons (.VPK)
查看>>
解决Android中的ERROR: the user data image is used by another emulator. aborting的方法
查看>>
电子书下载:Metro Revealed Building Windows 8 apps with XAML and C#.
查看>>
jQuery相册插件(开源下载)
查看>>
Azure China (12) 域名备案问题
查看>>
PKU 题目分类
查看>>
HDU What Are You Talking About
查看>>
[1443] Weiqi
查看>>
Unity3D Mecanim :Body Mask的使用、 角色Retargeting原理分析、Apply RootMotion
查看>>
MySQL技术内幕读书笔记(六)——索引与算法之全文索引
查看>>
vim 下web开发html css js插件
查看>>