zoukankan      html  css  js  c++  java
  • hdu---------(1026)Ignatius and the Princess I(bfs+dfs)

    Ignatius and the Princess I

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 12124    Accepted Submission(s): 3824
    Special Judge


    Problem Description
    The Princess has been abducted by the BEelzebub feng5166, our hero Ignatius has to rescue our pretty Princess. Now he gets into feng5166's castle. The castle is a large labyrinth. To make the problem simply, we assume the labyrinth is a N*M two-dimensional array which left-top corner is (0,0) and right-bottom corner is (N-1,M-1). Ignatius enters at (0,0), and the door to feng5166's room is at (N-1,M-1), that is our target. There are some monsters in the castle, if Ignatius meet them, he has to kill them. Here is some rules:

    1.Ignatius can only move in four directions(up, down, left, right), one step per second. A step is defined as follow: if current position is (x,y), after a step, Ignatius can only stand on (x-1,y), (x+1,y), (x,y-1) or (x,y+1).
    2.The array is marked with some characters and numbers. We define them like this:
    . : The place where Ignatius can walk on.
    X : The place is a trap, Ignatius should not walk on it.
    n : Here is a monster with n HP(1<=n<=9), if Ignatius walk on it, it takes him n seconds to kill the monster.

    Your task is to give out the path which costs minimum seconds for Ignatius to reach target position. You may assume that the start position and the target position will never be a trap, and there will never be a monster at the start position.
     
    Input
    The input contains several test cases. Each test case starts with a line contains two numbers N and M(2<=N<=100,2<=M<=100) which indicate the size of the labyrinth. Then a N*M two-dimensional array follows, which describe the whole labyrinth. The input is terminated by the end of file. More details in the Sample Input.
     
    Output
    For each test case, you should output "God please help our poor hero." if Ignatius can't reach the target position, or you should output "It takes n seconds to reach the target position, let me show you the way."(n is the minimum seconds), and tell our hero the whole path. Output a line contains "FINISH" after each test case. If there are more than one path, any one is OK in this problem. More details in the Sample Output.
     
    Sample Input
    5 6 .XX.1. ..X.2. 2...X. ...XX. XXXXX. 5 6 .XX.1. ..X.2. 2...X. ...XX. XXXXX1 5 6 .XX... ..XX1. 2...X. ...XX. XXXXX.
     
    Sample Output
    It takes 13 seconds to reach the target position, let me show you the way. 1s:(0,0)->(1,0) 2s:(1,0)->(1,1) 3s:(1,1)->(2,1) 4s:(2,1)->(2,2) 5s:(2,2)->(2,3) 6s:(2,3)->(1,3) 7s:(1,3)->(1,4) 8s:FIGHT AT (1,4) 9s:FIGHT AT (1,4) 10s:(1,4)->(1,5) 11s:(1,5)->(2,5) 12s:(2,5)->(3,5) 13s:(3,5)->(4,5) FINISH It takes 14 seconds to reach the target position, let me show you the way. 1s:(0,0)->(1,0) 2s:(1,0)->(1,1) 3s:(1,1)->(2,1) 4s:(2,1)->(2,2) 5s:(2,2)->(2,3) 6s:(2,3)->(1,3) 7s:(1,3)->(1,4) 8s:FIGHT AT (1,4) 9s:FIGHT AT (1,4) 10s:(1,4)->(1,5) 11s:(1,5)->(2,5) 12s:(2,5)->(3,5) 13s:(3,5)->(4,5) 14s:FIGHT AT (4,5) FINISH God please help our poor hero. FINISH
     
    Author
    Ignatius.L
     
    简单的搜索题: 记录路径额搜索...
    代码:
     1 /*Problem : 1026 ( Ignatius and the Princess I )     Judge Status : Accepted
     2 RunId : 11510650    Language : G++    Author : huifeidmeng
     3 Code Render Status : Rendered By HDOJ G++ Code Render Version 0.01 Beta*/
     4 
     5 #include<cstring>
     6 #include<cstdio>
     7 #include<cstdlib>
     8 #include<queue>
     9 #include<iostream>
    10 using namespace std;
    11 const int maxn=101;
    12 struct node{
    13   int x,y;
    14 };
    15 struct sode{
    16   int val;
    17   int sum;
    18   node pre; //他一个点
    19   void setint(int x,int y){
    20       pre.x=x;
    21       pre.y=y;
    22   }
    23 };
    24  int n,m,cont;
    25  sode map[maxn][maxn];
    26 int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
    27 void bfs(){
    28   queue<node> anc;
    29   node tem={0,0};
    30   anc.push(tem);
    31   while(!anc.empty()){
    32       node sav=anc.front();
    33       anc.pop();
    34     for(int i=0;i<4;i++){
    35           tem=(node){dir[i][0]+sav.x,dir[i][1]+sav.y};
    36         if(tem.x>=0&&tem.x<n&&tem.y>=0&&tem.y<m&&map[tem.x][tem.y].val!=-1){
    37           if(map[tem.x][tem.y].sum==0
    38           ||map[tem.x][tem.y].sum>map[sav.x][sav.y].sum+map[tem.x][tem.y].val+1)
    39            {
    40               map[tem.x][tem.y].sum=map[sav.x][sav.y].sum+map[tem.x][tem.y].val+1;
    41               map[tem.x][tem.y].setint(sav.x,sav.y);
    42               anc.push(tem);
    43            }
    44         }
    45     }
    46     }
    47 }
    48 void dfs(sode a,node cur){
    49     if(cur.x==0&&cur.y==0){
    50       cont=1;
    51       while(map[cur.x][cur.y].val-->0)
    52        printf("%ds:FIGHT AT (%d,%d)
    ",cont++,cur.x,cur.y);
    53      //  printf("%ds:(%d,%d)->(%d,%d)
    ",cont++,a.pre.x,a.pre.y,cur.x,cur.y);
    54     return;
    55     }
    56     dfs(map[a.pre.x][a.pre.y],a.pre);
    57     printf("%ds:(%d,%d)->(%d,%d)
    ",cont++,a.pre.x,a.pre.y,cur.x,cur.y);
    58     if(a.val>0){
    59       while(a.val-->0){
    60          printf("%ds:FIGHT AT (%d,%d)
    ",cont++,cur.x,cur.y);
    61      }
    62     }
    63 }
    64 int main(){
    65   char ss[105];
    66   //freopen("test.in","r",stdin);
    67  // freopen("test.out","w",stdout);
    68  while(scanf("%d%d",&n,&m)!=EOF){
    69    for(int i=0;i<n;i++){
    70      scanf("%s",ss);
    71     for(int j=0;j<m;j++){
    72         map[i][j].sum=0;
    73         map[i][j].setint(0,0);
    74        if(ss[j]=='.') map[i][j].val=0;
    75        else if(ss[j]=='X')map[i][j].val=-1;
    76        else{
    77             map[i][j].val= ss[j]-'0';
    78             if(i+j==0)map[i][j].sum=map[i][j].val;
    79        }
    80      }
    81 }
    82   bfs();
    83 if(map[n-1][m-1].pre.x==0)
    84    printf("God please help our poor hero.
    ");
    85 else {
    86     printf("It takes %d seconds to reach the target position, let me show you the way.
    ",map[n-1][m-1].sum);
    87     dfs(map[n-1][m-1],(node){n-1,m-1});
    88 }
    89   puts("FINISH");
    90 }
    91  return 0;
    92 }
     
  • 相关阅读:
    第十三章 部署Java应用程序
    分布式系列五: RMI通信
    分布式系列四: HTTP及HTTPS协议
    分布式系列三: 对象序列化
    程序中的 “负数取模” 问题
    【转】Linux C函数库参考
    【转】 Linux中记录终端输出到txt文本文件
    【转】 #define用法详解
    error: ‘to_string’ was not declared in this scope
    exit() 与 return() 的区别
  • 原文地址:https://www.cnblogs.com/gongxijun/p/3927181.html
Copyright © 2011-2022 走看看