求助!#2TLE!

P1434 [SHOI2002] 滑雪

Damocleser_Logic @ 2019-07-06 13:09:24

include<bits/stdc++.h>

using namespace std; int r,c,f[101][101],a[101][101],mmax=0,x[10001],y[10001],xi; int det[4][2]={{0,1},{1,0},{0,-1},{-1,0}}; void dfs(int x,int y) { for(int i=0;i<4;i++) { int xx=x+det[i][0]; int yy=y+det[i][1]; if(xx>0&&xx<=r&&yy>0&&yy<=c&&a[xx][yy]<a[x][y]) if(f[xx][yy]<f[x][y]+1) { f[xx][yy]=f[x][y]+1; dfs(xx,yy); } } } int main() { memset(f,0,sizeof(f)); cin>>r>>c; for(int i=1;i<=r;i++) for(int j=1;j<=c;j++) cin>>a[i][j]; int ans=0; for(int x=1;x<=r;x++) for(int y=1;y<=c;y++) { f[x][y]=1; dfs(x,y); for(int i=1;i<=r;i++) for(int j=1;j<=c;j++) ans=max(ans,f[i][j]); } cout<<ans; }


by 向JFCA说不 @ 2019-07-06 13:13:26


by 1saunoya @ 2019-07-06 13:13:30

希望更丰富的展现?使用Markdown


by 向JFCA说不 @ 2019-07-06 13:13:32

@LiHeYang666


by 向JFCA说不 @ 2019-07-06 13:16:12

@LiHeYang666 用一个f[x][y]数组记录从点(x,y)开始的最长滑道,在搜索的时候如果该数组值非0那么就直接返回答案


by Damocleser_Logic @ 2019-07-06 20:15:42

谢谢大佬


|