标签:个人 bool scanf using for output ios fine turn
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 95792 | Accepted: 36322 |
Description
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
Input
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。
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; #define N 105 int dir[4][2]={-1,0,0,1,1,0,0,-1}; int gra[N][N]; int dp[N][N],r,c; bool inside(int x,int y) { if(x>=1&&x<=r&&y>=1&y<=c) return 1; return 0; } int dfs(int x,int y) { if(dp[x][y]>=0) return dp[x][y]; dp[x][y]=0; for(int i=0;i<4;i++) { int xx=x+dir[i][0]; int yy=y+dir[i][1]; if(inside(xx,yy)&&gra[xx][yy]<gra[x][y]) { dp[x][y]=max(dp[x][y],dfs(xx,yy)+1); } } return dp[x][y]; } int main() { scanf("%d%d",&r,&c); for(int i=1;i<=r;i++) for(int j=1;j<=c;j++) scanf("%d",&gra[i][j]); memset(dp,-1,sizeof(dp)); int res=0; for(int i=1;i<=r;i++) for(int j=1;j<=c;j++) res=max(res,dfs(i,j)); printf("%d\n",res+1); return 0; }
标签:个人 bool scanf using for output ios fine turn
原文地址:http://www.cnblogs.com/jasonlixuetao/p/6597437.html