HDU 5024

来源:互联网 发布:网络黄金egd的最新消息 编辑:程序博客网 时间:2024/04/30 09:19

Wang Xifeng's Little Plot

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 718    Accepted Submission(s): 451


Problem Description
《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel was created in Qing Dynasty, by Cao Xueqin. But the last 40 chapters of the original version is missing, and that part of current version was written by Gao E. There is a heart breaking story saying that after Cao Xueqin died, Cao's wife burned the last 40 chapter manuscript for heating because she was desperately poor. This story was proved a rumor a couple of days ago because someone found several pages of the original last 40 chapters written by Cao. 

In the novel, Wang Xifeng was in charge of Da Guan Yuan, where people of Jia family lived. It was mentioned in the newly recovered pages that Wang Xifeng used to arrange rooms for Jia Baoyu, Lin Daiyu, Xue Baochai and other teenagers. Because Jia Baoyu was the most important inheritor of Jia family, and Xue Baochai was beautiful and very capable , Wang Xifeng didn't want Jia Baoyu to marry Xue Baochai, in case that Xue Baochai might take her place. So, Wang Xifeng wanted Baoyu's room and Baochai's room to be located at two ends of a road, and this road should be as long as possible. But Baoyu was very bad at directions, and he demanded that there could be at most one turn along the road from his room to Baochai's room, and if there was a turn, that turn must be ninety degree. There is a map of Da Guan Yuan in the novel, and redists (In China English, one whose job is studying 《Dream of the Red Chamber》is call a "redist") are always arguing about the location of Baoyu's room and Baochai's room. Now you can solve this big problem and then become a great redist.
 

Input
The map of Da Guan Yuan is represented by a matrix of characters '.' and '#'. A '.' stands for a part of road, and a '#' stands for other things which one cannot step onto. When standing on a '.', one can go to adjacent '.'s through 8 directions: north, north-west, west, south-west, south, south-east,east and north-east.

There are several test cases.

For each case, the first line is an integer N(0<N<=100) ,meaning the map is a N × N matrix.

Then the N × N matrix follows.

The input ends with N = 0.
 

Output
For each test case, print the maximum length of the road which Wang Xifeng could find to locate Baoyu and Baochai's rooms. A road's length is the number of '.'s it includes. It's guaranteed that for any test case, the maximum length is at least 2.
 

Sample Input
3#.###...#3...##...#3...###..#3...##....0
 

Sample Output
3435
 

Source
2014 ACM/ICPC Asia Regional Guangzhou Online
题意:求两个人的最远步数,只能拐一次,而且拐点必须是90度,方向是八个方向,只能走'.'。
分析:直接求出,每个点的8个方向所能到达的最远距离,然后两个垂直方向的最远距离相加,然后求出最大的点。我用了两种方法,第二种装B不成反被..
代码一:
#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;int n,ste;char str[110][110];int xx[8]= {0,-1,-1,-1,0,1,1,1},yy[8]= {-1,-1,0,1,1,1,0,-1};struct dd{    int num[8];}a;void dfs(int sx,int sy,int fa){    int X=sx+xx[fa];    int Y=sy+yy[fa];    if(Y>=0&&X<n&&Y>=0&&Y<n&&str[X][Y]=='.')    {        ste++;        dfs(X,Y,fa);    }}int main(){    while(scanf("%d",&n)!=EOF&&n!=0)    {        for(int i=0; i<n; i++)            scanf("%s",str[i]);            int most=0;        for(int i=0; i<n; i++)        {            for(int j=0; j<n; j++)                if(str[i][j]=='.')                {                    for(int k=0;k<8;k++)                    {                        ste=1;                        dfs(i,j,k);                        a.num[k]=ste;                    }                    for(int k=0;k<8;k++)                    {                        most=max(most,a.num[k]+a.num[(k+2)%8]-1);                    }                }        }        printf("%d\n",most);    }    return 0;}

代码二:
#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;int n,most;char str[110][110];int xx[8]= {0,-1,-1,-1,0,1,1,1},yy[8]= {-1,-1,0,1,1,1,0,-1};struct node{    int x,y,times;} que[110*110],t,tp;void dfs(int sx,int sy,int f,int p,int ste){    if(ste>most)        most=ste;    if(p==-2)    {        for(int i=0; i<8; i++)        {            tp.x=sx+xx[i];            tp.y=sy+yy[i];            if(tp.x>=0&&tp.x<n&&tp.y>=0&&tp.y<n&&str[tp.x][tp.y]=='.')            {                dfs(tp.x,tp.y,i,-1,ste+1);            }        }    }    else if(p==-1)    {        tp.x=sx+xx[f];        tp.y=sy+yy[f];        if(tp.x>=0&&tp.x<n&&tp.y>=0&&tp.y<n&&str[tp.x][tp.y]=='.')            dfs(tp.x,tp.y,f,-1,ste+1);        f=(f+2)%8;        tp.x=sx+xx[f];        tp.y=sy+yy[f];        if(tp.x>=0&&tp.x<n&&tp.y>=0&&tp.y<n&&str[tp.x][tp.y]=='.')            dfs(tp.x,tp.y,f,0,ste+1);        f=(f+4)%8;        tp.x=sx+xx[f];        tp.y=sy+yy[f];        if(tp.x>=0&&tp.x<n&&tp.y>=0&&tp.y<n&&str[tp.x][tp.y]=='.')        {            dfs(tp.x,tp.y,f,0,ste+1);        }    }    else if(p==0)    {        tp.x=sx+xx[f];        tp.y=sy+yy[f];        if(tp.x>=0&&tp.x<n&&tp.y>=0&&tp.y<n&&str[tp.x][tp.y]=='.')            dfs(tp.x,tp.y,f,0,ste+1);    }}int main(){    while(scanf("%d",&n)!=EOF&&n!=0)    {        for(int i=0; i<n; i++)            scanf("%s",str[i]);        most=0;        for(int i=0; i<n; i++)            for(int j=0; j<n; j++)                if(str[i][j]=='.')                {                    dfs(i,j,0,-2,1);                }        printf("%d\n",most);    }    return 0;}


0 0
原创粉丝点击