CZ_7 @ 2020-10-26 21:24:19
#include<bits/stdc++.h>
//#include<windows.h>
using namespace std;
int n,m,sx,sy,fx,fy,t,tx,ty,cnt=1,maxx,aa,maxxx,kk;
int maze[102][102];
int x,y;
int dx[5]={0,-1,1,0,0};
int dy[5]={0,0,0,-1,1};
int gu(int x,int y){
if(x>=1&&x<=n&&y>=1&&y<=m)return 1;
return 0;
}
//void outmaze(){
// system("cls");
// for(int i=1;i<=m;i++){
// for(int j=1;j<=n;j++){
// cout<<maze[i][j];
// }
// cout<<endl;
// }
//}
int dfs(int x,int y,int cnt){
// outmaze();
// Sleep(100);
maxx=max(cnt,maxx);
for(int i=1;i<=4;i++){
int kk=0;
int xx=x+dx[i];
int yy=y+dy[i];
if(gu(xx,yy)&&maze[xx][yy]<maze[x][y]){
dfs(xx,yy,cnt+1);
}
}
return 0;
}
int main(){
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>maze[i][j];
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
dfs(i,j,1);
maxx=max(maxx,cnt);
cnt=1;
}
}
cout<<maxx;
return 0;
}
by chichichichi @ 2020-10-26 21:34:15
用记搜,直接搜索会T
by newbie666 @ 2020-11-02 18:31:37
@CZ_7 用快读,输出改成printf,return改成exit(0)试试