博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1088
阅读量:6759 次
发布时间:2019-06-26

本文共 1313 字,大约阅读时间需要 4 分钟。

Description

Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子
1  2  3  4 5 16 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。在上面的例子中,一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-3-2-1更长。事实上,这是最长的一条。

Input

输入的第一行表示区域的行数R和列数C(1 <= R,C <= 100)。下面是R行,每行有C个整数,代表高度h,0<=h<=10000。

Output

输出最长区域的长度。

Sample Input

5 51 2 3 4 516 17 18 19 615 24 25 20 714 23 22 21 813 12 11 10 9

Sample Output

25 记忆化搜索的题,找到这个公式就行dp[x][y]=max(dfs(xx,yy)+1,dp[x][y])
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define zuida 100000using namespace std;int dx[]={ 0,0,-1,1};int dy[]={ 1,-1,0,0};int dis[105][105];int vis[105][105];int dp[105][105];int n,m;int dfs(int x,int y){ if(dp[x][y]==1) { int i,j; int xx,yy; for(i=0;i<4;i++) { xx=dx[i]+x; yy=dy[i]+y;//cout<
<
=0&&xx
=0&&yy
dis[xx][yy]) { dp[x][y]=max(dfs(xx,yy)+1,dp[x][y]); } } } return dp[x][y];}int main(){ int i,j; cin>>n>>m; int min=1000000,xx,yy; for(i=0;i
>dis[i][j]; dp[i][j]=1; } int man=0,x; for(i=0;i
man)man=x; } cout<
<

 

转载于:https://www.cnblogs.com/SparkPhoneix/p/8640211.html

你可能感兴趣的文章
你那么喜欢看”干货“,是因为你根本不想下功夫。
查看>>
软件测试用例
查看>>
python mysql 单表查询 多表查询
查看>>
android handler概念解释
查看>>
eclipse代码左虚线对齐设置
查看>>
插入排序的Java代码实现
查看>>
Spring整合Web开发
查看>>
在SContruct中编译.c
查看>>
让ubuntu开启ssh服务以及让vi/vim正常使用方向键与退格键
查看>>
10.两个链表的交叉
查看>>
Visio Premium 2010密钥+破解激活方法
查看>>
JEE , EJB概念深入概括
查看>>
socket通信简单介绍
查看>>
Unity3D逻辑热更新,第二代舒爽解决方案,L#使用简介
查看>>
状态码表
查看>>
产品经理:想爱没那么简单
查看>>
Java:按值传递还是按引用传递详细解说
查看>>
(转)HTML字符实体(Character Entities),转义字符串(Escape Sequence)
查看>>
去掉 Android工程中让人很不爽的“黄色警告”
查看>>
aliyun阿里云Maven仓库地址
查看>>