HDU 1242 Rescue (BFS(廣度優先搜尋))

來源:互聯網
上載者:User
Rescue

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 12441 Accepted Submission(s): 4551Problem DescriptionAngel was caught by the MOLIGPY! He was put in prison by Moligpy. The prison is described as a N * M (N, M <= 200) matrix. There are WALLs, ROADs, and GUARDs in the prison.

Angel's friends want to save Angel. Their task is: approach Angel. We assume that "approach Angel" is to get to the position where Angel stays. When there's a guard in the grid, we must kill him (or her?) to move into the grid. We assume that we moving up,
down, right, left takes us 1 unit time, and killing a guard takes 1 unit time, too. And we are strong enough to kill all the guards.

You have to calculate the minimal time to approach Angel. (We can move only UP, DOWN, LEFT and RIGHT, to the neighbor grid within bound, of course.)

InputFirst line contains two integers stand for N and M.

Then N lines follows, every line has M characters. "." stands for road, "a" stands for Angel, and "r" stands for each of Angel's friend.

Process to the end of the file.

OutputFor each test case, your program should output a single integer, standing for the minimal time needed. If such a number does no exist, you should output a line containing "Poor ANGEL has to stay in the prison all his life."

Sample Input

7 8#.#####.#.a#..r.#..#x.....#..#.##...##...#..............

Sample Output

13


思路:BFS(廣度優先搜尋)

import java.io.*;import java.util.*;public class Main {Queue<Node> que=new LinkedList<Node>();int n,m,sx,sy;char ch[][];int fx[]={1,-1,0,0};int fy[]={0,0,1,-1};boolean boo[][]=new boolean[202][202];public static void main(String[] args) {new Main().work();}void work(){    Scanner sc=new Scanner(new BufferedInputStream(System.in));    while(sc.hasNext()){    que.clear();    n=sc.nextInt();    m=sc.nextInt();    ch=new char[n][m];    for(int i=0;i<n;i++){    String s=sc.next();    ch[i]=s.toCharArray();    Arrays.fill(boo[i],false);    }    Node bode=new Node();    for(int i=0;i<n;i++){    for(int j=0;j<m;j++){    if(ch[i][j]=='a'){    bode.x=i;    bode.y=j;    }    }    }    boo[bode.x][bode.y]=true;    bode.t=0;    que.add(bode);    BFS();    }    }void BFS(){    while(!que.isEmpty()){    Node bode=que.poll();    if(ch[bode.x][bode.y]=='r'){    System.out.println(bode.t);    return;    }    for(int i=0;i<4;i++){    int px=bode.x+fx[i];int py=bode.y+fy[i];    if(check(px,py)&&!boo[px][py]){    Node t1=new Node();    if(ch[px][py]=='x'){    t1.t=bode.t+2;    }    else{    t1.t=bode.t+1;    }    t1.x=px;    t1.y=py;    boo[px][py]=true;    que.add(t1);    }    }    }    System.out.println("Poor ANGEL has to stay in the prison all his life.");    }boolean check(int px,int py){if(px<0|px>n-1||py<0||py>m-1||ch[px][py]=='#')return false;return true;}class Node{int x;int y;int t; }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.