POJ 1383 Labyrinth (树的直径求两点间最大距离)

Description

The northern part of the Pyramid contains a very large and complicated labyrinth. The labyrinth is divided into square blocks, each of them either filled by rock, or free. There is also a little hook on the floor in the center of every free block. The ACM have found that two of the hooks must be connected by a rope that runs through the hooks in every block on the path between the connected ones. When the rope is fastened, a secret door opens. The problem is that we do not know which hooks to connect. That means also that the neccessary length of the rope is unknown. Your task is to determine the maximum length of the rope we could need for a given labyrinth.

Input

The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing two integers C and R (3 <= C,R <= 1000) indicating the number of columns and rows. Then exactly R lines follow, each containing C characters. These characters specify the labyrinth. Each of them is either a hash mark (#) or a period (.). Hash marks represent rocks, periods are free blocks. It is possible to walk between neighbouring blocks only, where neighbouring blocks are blocks sharing a common side. We cannot walk diagonally and we cannot step out of the labyrinth. 
The labyrinth is designed in such a way that there is exactly one path between any two free blocks. Consequently, if we find the proper hooks to connect, it is easy to find the right path connecting them.

Output

Your program must print exactly one line of output for each test case. The line must contain the sentence "Maximum rope length is X." where Xis the length of the longest path between any two free blocks, measured in blocks.

Sample Input

2
3 3
###
#.#
###
7 6
#######
#.#.###
#.#.###
#.#.#.#
#.....#
#######

Sample Output

Maximum rope length is 0.
Maximum rope length is 8.

Hint

Huge input, scanf is recommended. 
If you use recursion, maybe stack overflow. and now C++/c 's stack size is larger than G++/gcc
 
输入时先判断str[][]是否等于'.',若等于记录'.'的位置bx,by,对bx,by进行搜索,找出离bx,by距离最大的点kx,ky,然后对kx,ky进行搜索找出最大的距离。
从数组中任意一个点开始搜索找到离他最远的点(x,y),则数组中离(x,y)最远的点与(x,y)的距离就是任意两点距离的最大值。
 1 #include<cstdio>
 2 #include<queue>
 3 #include<string.h>
 4 #define M 1010
 5 using namespace std;
 6 int n,m,i,ans,flag[M][M],j,bx,by,kx,ky;
 7 char str[M][M];
 8 int dx[4]={-1,1,0,0};
 9 int dy[4]={0,0,-1,1};
10 struct stu
11 {
12     int x,y,step;
13 }st;
14 void bfs(int xx,int yy)
15 {    
16     memset(flag,0,sizeof(flag));
17     stu next;
18     st.x=xx;
19     st.y=yy;
20     st.step=0;
21     queue<stu>que;
22     flag[xx][yy] = 1;
23     que.push(st);
24     while(!que.empty())
25     {
26         st=que.front();
27         que.pop();
28         for(int i = 0 ; i < 4; i++)
29         {
30             next.x=st.x+dx[i];
31             next.y=st.y+dy[i];
32             next.step=st.step+1;
33             if(str[next.x][next.y] !='#' && next.x>=0 && next.y>=0 && next.x<m&&next.y<n&& flag[next.x][next.y] == 0)
34             {
35                 flag[next.x][next.y]=1;
36                 if(ans < next.step)
37                 {
38                     ans=next.step;
39                     kx=next.x;
40                     ky=next.y;
41                 }
42                 que.push(next);
43             }
44         }
45     }
46 }
47 int main()
48 {
49     int t,k;
50     scanf("%d",&t);
51     while(t--)
52     {
53         ans=0;
54     
55         k=0;
56         scanf("%d %d",&n,&m);
57         for(i = 0 ; i < m ; i++)
58         {
59             scanf("%s",str[i]);
60             if(k) continue;
61             for(j = 0 ; j < n ; j++)
62             {
63                 if(str[i][j] == '.')
64                 {
65                     bx=i;
66                     by=j;
67                     k=1;
68                 }
69             }
70         }
71         bfs(bx,by);            //搜索出离bx,by距离最远的点kx,ky 
72         bfs(kx,ky);            //搜索出两点之间最大的距离 
73         printf("Maximum rope length is %d.
",ans);
74     }
75  } 
——将来的你会感谢现在努力的自己。
原文地址:https://www.cnblogs.com/yexiaozi/p/5730801.html