zoukankan      html  css  js  c++  java
  • poj2251 Dungeon Master

    Description

    You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one unit north, south, east, west, up or down. You cannot move diagonally and the maze is surrounded by solid rock on all sides. 

    Is an escape possible? If yes, how long will it take? 

    Input

    The input consists of a number of dungeons. Each dungeon description starts with a line containing three integers L, R and C (all limited to 30 in size). 
    L is the number of levels making up the dungeon. 
    R and C are the number of rows and columns making up the plan of each level. 
    Then there will follow L blocks of R lines each containing C characters. Each character describes one cell of the dungeon. A cell full of rock is indicated by a '#' and empty cells are represented by a '.'. Your starting position is indicated by 'S' and the exit by the letter 'E'. There's a single blank line after each level. Input is terminated by three zeroes for L, R and C.

    Output

    Each maze generates one line of output. If it is possible to reach the exit, print a line of the form 
    Escaped in x minute(s).

    where x is replaced by the shortest time it takes to escape. 
    If it is not possible to escape, print the line 
    Trapped!

    Sample Input

    3 4 5
    S....
    .###.
    .##..
    ###.#
    
    #####
    #####
    ##.##
    ##...
    
    #####
    #####
    #.###
    ####E
    
    1 3 3
    S##
    #E#
    ###
    
    0 0 0
    

    Sample Output

    Escaped in 11 minute(s).
    Trapped!
    记得之前是看题解才做出来的,今天又做了一遍,1A,果然题目多做是有好处的。这道题是三维的,其实就是在二维的基础上加了z轴,所以用bfs的时候用6个方向。
    
    
    #include<stdio.h>
    #include<string.h>
    int x2,y2,z2,x3,y3,z3;
    char map[40][40][40];
    int b[40][40][40];
    int tab[8][3]={1,0,0, -1,0,0, 0,0,1, 0,-1,0, 0,0,-1, 0,1,0},num,flag,m,n,l;
    int q[1111111][3];
    void bfs()
    {
    	memset(q,0,sizeof(q));
    	memset(b,0,sizeof(b));
    	int front=1,rear=1,i,j,x,y,z,xx,yy,zz;
        q[front][0]=z2;q[front][1]=x2;q[front][2]=y2;
        b[z2][x2][y2]=0;
    	while(front<=rear)
    	{
    		z=q[front][0];x=q[front][1];y=q[front][2];
    		if(x==x3 && y==y3 && z==z3) return;
    		front++;
    		for(i=0;i<6;i++){
    				xx=x+tab[i][1];yy=y+tab[i][2];zz=z+tab[i][0];
    				if(xx>=0 && xx<n && yy>=0 && yy<m && zz>=0 && zz<l && map[zz][xx][yy]!='#')
    				{
    					map[zz][xx][yy]='#';
    					b[zz][xx][yy]=b[z][x][y]+1;
    					rear++;
    					q[rear][0]=zz;q[rear][1]=xx;q[rear][2]=yy;
    				}
    		}
    	}
    	return;
    }
    
    
    int main()
    {
    	int i,j,h;
    	while(scanf("%d%d%d",&l,&n,&m)!=EOF)
    	{
    		if(n==0 && m==0 && l==0)break;
    		memset(map,0,sizeof(map));
    		for(h=0;h<l;h++){
    			for(i=0;i<n;i++){
    				scanf("%s",map[h][i]);
    				for(j=0;j<m;j++){
    					if(map[h][i][j]=='S'){
    						x2=i;y2=j;z2=h;
    					}
    					else if(map[h][i][j]=='E'){
    						x3=i;y3=j;z3=h;
    					}
    				}
    			}
    		}
    			num=0;flag=0;
    			map[z2][x2][y2]='#';
    			bfs();
    			if(b[z3][x3][y3]==0){
    				printf("Trapped!
    ");continue;
    			}
    			printf("Escaped in %d minute(s).
    ",b[z3][x3][y3]);
    	}
    	return 0;
    }
    
  • 相关阅读:
    day10 Python 形参顺序
    为oracle中的表格增加列和删除列
    为mapcontrol中的图层设置透明度
    最大的愿望 2007-05-10
    动心 2004年后半年
    写在十年 2007-09-15 (写给L之三)
    致vi老大 2011.1
    如潮 2011.2
    自然人——女孩思绪 (2006-09-14 08:21:51)
    朋友(2003年)
  • 原文地址:https://www.cnblogs.com/herumw/p/9464820.html
Copyright © 2011-2022 走看看