Description
It's not surprising that Michael loves skiing because skiing is really exciting. But in order to get the speed, the slide area must be tilted down, and when you slide to the bottom, you have to go uphill again or wait for the elevator to carry you. Michael wants to know the longest landslide in a region. A region is given by a two-dimensional array. Each number in the array represents the vertex height. The following is an example.
1 2 3 4 516 17 18 19 615 24 25 20 714 23 22 21 813 12 11 10 9
A person can slide from a certain point to one of the four adjacent points up and down, when and only when the height is reduced. In the preceding example, a slide is 24-17-16-1. Of course, 25-24-23-...-3-2-1 is longer. In fact, this is the longest one.
Input
The first line indicates the number of rows in the region R and the number of columns C (1 <= r, C <= 100 ). Below is the R row, each row has a C integer, representing the height H, 0 <= H <= 10000.
Output
The length of the maximum output area.
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
#include <stdio.h>#include <string.h>#include <algorithm>using namespace std;int n,m,dp[105][105],a[105][105];int to[4][2] = {1,0,-1,0,0,1,0,-1};int check(int x,int y){ if(x<1 || x>n || y<1 || y>m) return 1; return 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 xx = x+to[i][0]; int yy = y+to[i][1]; if(check(xx,yy) || a[xx][yy]>=a[x][y]) continue; ans = max(ans,dfs(xx,yy)); } dp[x][y] = ans+1; return dp[x][y];}int main(){ int i,j,ans = 0; scanf("%d%d",&n,&m); for(i = 1; i<=n; i++) for(j = 1; j<=m; j++) { scanf("%d",&a[i][j]); dp[i][j] = 0; } for(i = 1; i<=n; i++) for(j = 1; j<=m; j++) ans = max(ans,dfs(i,j)); printf("%d\n",ans); return 0;}