HDU 5024 Wang Xifeng's little plot (brute force enumeration + blind)

Source: Internet
Author: User

Question link: http://acm.hdu.edu.cn/showproblem.php? PID = 1, 5024


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 shoshould be as long as possible. but Baoyu was very bad at directions ctions, and he demanded that there cocould 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.
Inputthe 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. when standing on '. ', one can go to adjacent '.'s through 8 directions ctions: 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.
Outputfor each test case, print the maximum length of the road which Wang Xifeng cocould find to locate Baoyu and Baochai's rooms. A road's length is the number '.'s it except des. 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
 
Source2014 ACM/ICPC Asia Regional Guangzhou online


Question:

In a given graph, '.' represents a routable path. '#' is not feasible. Ask the distance between the two points at most in a 90-degree turning path!

Ideas:

Brute force enumeration refers to the walking distance of each point in eight directions. Since the distance can only be 90 degrees, we divide the eight directions into two enumerations! In this way, we can ensure that it is 90 degrees! Enumerate the feasible paths of each '.' And add or subtract one of the two farthest paths! (That is, to enumerate each point as the point of turning ).

The Code is as follows:

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#include <queue>#define MAXN 117using namespace std;char mm[MAXN][MAXN];int k;int xx[8]= {0,1,0,-1,-1,1,1,-1};int yy[8]= {1,0,-1,0,1,1,-1,-1};int main(){    int n;    int re1[8],re2[8];    while(~scanf("%d",&n) && n)    {        memset(mm,0,sizeof(mm));        int maxx = -1;        for(int i = 0; i < n; i++)        {            scanf("%s",mm[i]);        }        for(int i = 0; i < n; i++)        {            for(int j = 0; j < n; j++)            {                memset(re1,0,sizeof(re1));                if(mm[i][j] == '.')                {                    for(int l = 0; l < 4; l++)                    {                        int t1 = i, t2 = j;                        while(1)                        {                            if(mm[t1][t2]=='.')                            {                                re1[l]++;                            }                            else                                break;                            t1+=xx[l], t2+=yy[l];                        }                    }                    sort(re1,re1+4);                    if(re1[2]+re1[3]> maxx)                        maxx = re1[2]+re1[3];                }            }        }        for(int i = 0; i < n; i++)        {            for(int j = 0; j < n; j++)            {                memset(re2,0,sizeof(re2));                if(mm[i][j] == '.')                {                    for(int l = 4; l < 8; l++)                    {                        int t1 = i, t2 = j;                        while(1)                        {                            if(mm[t1][t2]=='.')                            {                                re2[l-4]++;                            }                            else                                break;                            t1+=xx[l], t2+=yy[l];                        }                    }                    sort(re2,re2+4);                    if(re2[2]+re2[3]> maxx)                        maxx = re2[2]+re2[3];                }            }        }        printf("%d\n",maxx-1);    }    return 0;}


HDU 5024 Wang Xifeng's little plot (brute force enumeration + blind)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.