HDU5024

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

.

.

..#
3

.

..#
3

#

..#
3

.


0

Sample Output
3
4
3
5

这个题没想出啥好使的办法….
就是找到每个能走的点然后8个方向伸展到头…
每个点都这样..
本来以为肯定t死马当活马医….
结果竟然跑过去了…
时间还不长
真是吓哭我

#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstdio>
#include<memory.h>
#include<string>
using namespace std;
int n;
string tu[100];
int xingzou[8][2] = { {1,1},{1,0},{1,-1},{0,-1},{-1,-1},{-1,0},{-1,1},{0,1} };
int main()
{
    while (cin >> n)
    {
        if (n == 0)break;
        int sum = 0;
        for (int a = 0;a < n;a++)cin >> tu[a];
        for (int a = 0;a < n;a++)
        {
            for (int b = 0;b < n;b++)
            {
                if (tu[a][b] == '#')continue;
                int fang[8] = { 0 };
                for (int c = 0;c < 8;c++)
                {
                    int yi = xingzou[c][0], er = xingzou[c][1];
                    for (int d = 1;(a + d*yi) >= 0 && (a + d*yi) < n && (b + d*er) < n && (b + d*er) >= 0;d++)
                    {
                        if (tu[a + d*yi][b + d*er] == '.')
                        {
                            fang[c]++;
                        }
                        else break;
                    }
                }
                int ga[8] = { 0 };
                for (int e = 0;e < 6;e++)
                {
                    ga[e] = fang[e] + fang[e + 2];
                }
                ga[6] = fang[6] + fang[0];
                ga[7] = fang[7] + fang[1];
                sort(ga, ga + 8);
                sum = max(sum, ga[7] + 1);
            }
        }
        cout << sum << endl;
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值