码迷,mamicode.com
首页 > 其他好文 > 详细

[poj1088]滑雪(二维最长下降子序列)

时间:2017-11-09 20:54:35      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:space   span   dfs   ios   std   scan   pre   algorithm   code   

解题关键:记忆化搜索

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>
#include<iostream>
#include<cmath>
using namespace std;
typedef long long ll;
int d[102][102],n,m;
int dp[102][102];
int dir[4][2]={0,1,0,-1,1,0,-1,0};
int dfs(int x,int y){
    if(dp[x][y]) return dp[x][y];
    int ans=0;
    for(int i=0;i<4;i++){
        int tx=x+dir[i][0],ty=y+dir[i][1];
        if(tx<0||tx>=n||ty<0||ty>=m) continue;
        if(d[tx][ty]<d[x][y]){
            ans=max(ans,dfs(tx,ty));
        }
    }
    return dp[x][y]=ans+1;
}
int main(){
    while(~scanf("%d%d",&n,&m)){
        for(int i=0;i<n;i++) for(int j=0;j<m;j++) scanf("%d",&d[i][j]);
        int ans=0;
        for(int i=0;i<n;i++) for(int j=0;j<m;j++) ans=max(ans,dfs(i,j));
        printf("%d\n",ans);
    }
    return 0;
}

 

[poj1088]滑雪(二维最长下降子序列)

标签:space   span   dfs   ios   std   scan   pre   algorithm   code   

原文地址:http://www.cnblogs.com/elpsycongroo/p/7811097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!