首页 > 代码库 > poj 1088 滑雪 【记忆化搜索】+【DFS】
poj 1088 滑雪 【记忆化搜索】+【DFS】
策略:如题
题目链接:http://poj.org/problem?id=1088
代码:
#include<stdio.h> #include<string.h> int map[105][105], dp[105][105], n, m; const int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0}; //四个方向 int limit(int x, int y) //判断是不是越界了 { if(x<1||x>n||y<1||y>m) return 0; return 1; } int dfs(int x, int y) 查找 { if(dp[x][y]) return dp[x][y]; //如果以前找找过了,就不用再找了, 记忆化搜索 int pre, flag, sum, i; //flag 是标记周围有没有比他小的高度, pre是储存周围某一方向的长度, sum是选择四个方向最大的长度 pre = sum = flag = 0; for( i =0; i < 4; i ++){ int nx = x+dir[i][0]; int ny = y+dir[i][1]; if( limit(nx, ny)&&map[nx][ny] < map[x][y]){ pre = dfs(nx, ny); sum = sum>pre?sum:pre; flag = 1; } } if(flag) dp[x][y] =sum+1; else dp[x][y] = 1;<strong></strong><pre name="code" class="cpp" style="display: inline !important; "><strong style="font-family: Arial, Helvetica, sans-serif; white-space: normal; background-color: rgb(255, 255, 255); "></strong><pre name="code" class="cpp" style="display: inline !important; "><strong style="font-family: Arial, Helvetica, sans-serif; white-space: normal; background-color: rgb(255, 255, 255); "></strong><pre name="code" class="cpp" style="display: inline !important; ">//如果flag == 0,就意味着周围没有比他低的高度, 就将该处赋值为1
return dp[x][y];}int main(){int i, j;while(scanf("%d%d", &n, &m) == 2){for(i = 1; i <= n; i ++)for(j = 1; j<= m; j ++)scanf("%d", &map[i][j]);int max = 0;memset(dp, 0, sizeof(dp)); //初始化for(i = 1; i <= n; i ++)for(j = 1; j <= m; j ++){dp[i][j] = dfs(i, j);// printf("%d..", dp[i][j]);if(max < dp[i][j]) //找最大的max = dp[i][j];}printf("%d\n", max);}return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。