http://poj.org/problem?id=2251
//* @author:
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>();
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");
}
}
}
Meta
-
Recent Posts
Recent Comments
Archives
- May 2024
- April 2023
- February 2023
- January 2023
- December 2022
- November 2022
- September 2022
- June 2022
- July 2021
- January 2021
- February 2020
- September 2019
- March 2018
- February 2018
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
Categories
