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 5
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

Sample Output

25

记忆化搜索当然也还是搜索,只不过在普通的搜索上做了一些优化,因为使用的是动态规划的方法进行的优化,使得它看起来更像DP。
首先考虑如果这道题我们只是用普通搜索的方法做,那么就是从某一点开始搜索,一直搜索到最低点,不可以扩展的地方,记录下下滑的长度,那个某一点当然是不可预知的,所以得枚举,也就是说图中的每一点都要搜上一遍,请注意图最大是100*100的,超时肯定是不必说的 所以可以考虑使用dp做,dp比递归好的一个地方在于它解决了重叠子问题,这道题存在很多重叠子问题是不必说的,例如我从10出发,搜到了一条路,下一次我从25出发,等我到达10这一点时,虽然我以前走过这一条路,可是并没有把这一条路记录下来,所以还得重新再走上一遍,这样的重叠问题越多,时间浪费也就越严重,这样的浪费导致了指数级的时间复杂度,是很恐怖的 所以可以使用book【i】【j】(book在英文中有标记的意思)表示从第i行j个开始滑所能下滑的高度 那么动态规划方程为dp(i,j)=max{dp(i-1,j),dp(i+1,j),dp(i,j-1),dp(i,j+1),这些点的高度必须小于i行j列这个点的高度,否则不予考虑}+1
#include"iostream"
#include"cstring"
using namespace std; const int maxn=; int m,n,book[maxn][maxn],a[maxn][maxn];
int dir[][]={{-,},{,},{,},{,-}}; void Init()
{
for(int i=;i<=m;i++)
for(int j=;j<=n;j++)
cin>>a[i][j];
memset(book,-,sizeof(book));
} int dp(int i, int j)
{
int k, ni, nj;
if (book[i][j] > ) return book[i][j];
book[i][j] = ;
for (k = ; k < ; ++k)
{
ni = i + dir[k][];
nj = j + dir[k][];
if(ni>=&&ni<=m&&nj>=&&nj<=n&&a[i][j]>a[ni][nj]&&dp(ni,nj)+>book[i][j])
book[i][j] = book[ni][nj] + ;
}
return book[i][j];
} void Work()
{
int ans=-;
for(int i=;i<=m;i++)
for(int j=;j<=n;j++)
if(dp(i,j)>ans) ans=book[i][j];
cout<<ans<<endl;
// dp(3,3);
/* for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++) cout<<book[i][j]<<" ";
cout<<endl;
}*/
} int main()
{
while(cin>>m>>n)
{
Init();
Work();
}
return ;
}

HOLLO


集训第五周动态规划 I题 记忆化搜索的更多相关文章

  1. 集训第五周动态规划 D题 LCS

    Description In a few months the European Currency Union will become a reality. However, to join the ...

  2. 集训第五周 动态规划 B题LIS

      Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Des ...

  3. 集训第五周动态规划 H题 回文串统计

    Hrdv is interested in a string,especially the palindrome string.So he wants some palindrome string.A ...

  4. 集训第五周动态规划 G题 回文串

    Description A palindrome is a symmetrical string, that is, a string read identically from left to ri ...

  5. 集训第五周动态规划 F题 最大子矩阵和

    Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous s ...

  6. 集训第五周动态规划 C题 编辑距离

    Description Let x and y be two strings over some finite alphabet A. We would like to transform x int ...

  7. 集训第五周 动态规划 K题 背包

    K - 背包 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Statu ...

  8. 集训第五周动态规划 J题 括号匹配

    Description We give the following inductive definition of a “regular brackets” sequence: the empty s ...

  9. 集训第五周动态规划 E题 LIS

    Description The world financial crisis is quite a subject. Some people are more relaxed while others ...

随机推荐

  1. [Usaco2006 Jan] Dollar Dayz 奶牛商店

    Description 约翰到奶牛商场里买工具.商场里有K(1≤K≤100).种工具,价格分别为1,2,-,K美元.约翰手里有N(1≤N≤1000)美元,必须花完.那他有多少种购买的组合呢? Inpu ...

  2. leetcode 484. Find Permutation 思维题

    https://leetcode.com/contest/leetcode-weekly-contest-16a/problems/find-permutation/ 设原本的数字是0,那么按照它的D ...

  3. Rsync 12种故障排查及思路

    Rsync 故障排查整理 Rsync服务常见问题汇总讲解: ====================================================================== ...

  4. [转]Keyword Reference (F#)

    Visual F# Development Portal http://msdn.microsoft.com/en-us/library/vstudio/ff730280.aspx 本文转自:http ...

  5. VMware虚拟机中涉及的3种常见网络模式

    桥接模式.这种模式下,虚拟机和物理机连的是同一个网络,虚拟机和物理机是并列关系,地位是相当的.比如你家如果有用路由器,那么你的电脑和你的手机同时连接这个路由器提供的Wi-Fi,那么它们的关系就是这种模 ...

  6. CROSS APPLY AND CROSS APPLY

    随着业务千奇百怪,DBA数据库设计各有不同,一对多关系存JSON或字符串逗号分隔... 今天小编给大家分享一下针对这个问题的解决办法 问题一.存储过程接受参数格式为XXX,XXX 解决办法:将字符转成 ...

  7. oracle 创建表

    --创建表 create table browser_track( btId number not null , opend_id ) not null, url_address ) not null ...

  8. R in action读书笔记(13)第十章 功效分析

    功效分析 功效分析可以帮助在给定置信度的情况下,判断检测到给定效应值时所需的样本量.反过来,它也可以帮助你在给定置信度水平情况下,计算在某样本量内能检测到给定效应值的概率.如果概率低得难以接受,修改或 ...

  9. Xcode 9 打印信息解决

    Xcode 9 打印信息解决 打印信息 1 nw_proxy_resolver_create_parsed_array PAC evaluation error: kCFErrorDomainCFNe ...

  10. rem手机端页面自适应布局(待修正下一篇完美布局)

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...