设为首页 加入收藏

TOP

HDU - 5024 Wang Xifeng's Little Plot
2015-07-20 17:38:27 来源: 作者: 【 】 浏览:3
Tags:HDU 5024 Wang Xifeng' Little Plot

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
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
3
4
3
5
题意:找到一个最长的L型
思路:把L拆成两个直线,枚举所有的情况,记忆化搜索
#include 
    
     
#include 
     
       #include 
      
        #include 
       
         using namespace std; const int maxn = 110; int dx[8] = {0, 0, 1, -1, 1, 1, -1, -1}; int dy[8] = {1, -1, 0, 0, 1, -1, 1, -1}; int n, f[maxn][maxn][8]; char g[maxn][maxn]; int dfs(int x, int y, int dir) { if (f[x][y][dir] != -1) return f[x][y][dir]; if (g[x+dx[dir]][y+dy[dir]] == '.') return f[x][y][dir] = 1 + dfs(x+dx[dir], y+dy[dir], dir); else return f[x][y][dir] = 1; } int main() { while (scanf("%d", &n) != EOF && n) { memset(f, -1, sizeof(f)); memset(g, 0, sizeof(g)); for (int i = 1; i <= n; i++) scanf("%s", g[i]+1); int ans = -1; for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) if (g[i][j] == '.') { ans = max(ans, dfs(i, j, 0) + dfs(i, j, 2) - 1); ans = max(ans, dfs(i, j, 1) + dfs(i, j, 2) - 1); ans = max(ans, dfs(i, j, 1) + dfs(i, j, 3) - 1); ans = max(ans, dfs(i, j, 0) + dfs(i, j, 3) - 1); ans = max(ans, dfs(i, j, 4) + dfs(i, j, 5) - 1); ans = max(ans, dfs(i, j, 4) + dfs(i, j, 6) - 1); ans = max(ans, dfs(i, j, 7) + dfs(i, j, 5) - 1); ans = max(ans, dfs(i, j, 7) + dfs(i, j, 6) - 1); } printf("%d\n", ans); } return 0; }
       
      
     
    


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇HDU 1846 Brave Game (简单博弈) 下一篇NYOJ-另类乘法

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·「链表」是一种怎样 (2025-12-25 19:20:51)
·C 语言中的链表有哪 (2025-12-25 19:20:48)
·c语言中的链表怎么学 (2025-12-25 19:20:45)
·Redis 分布式锁全解 (2025-12-25 17:19:51)
·SpringBoot 整合 Red (2025-12-25 17:19:48)