|
- #include <algorithm>
- #include <iostream>
- #include <cmath>
- #include <cstring>
- #include <map>
- #include <string>
- #include <vector>
- #include <queue>
- #include <stack>
- #include <cstdio>
- using namespace std;
- int n,m,jl=0,f[200][200],b[200][200],px[4]={0,0,1,-1},py[4]={1,-1,0,0},maxn=-0x3f3f3f3f;
- struct hehe
- {
- int hei,x,y;
- }a[40000];
- bool cmp(hehe x,hehe y)
- {
- return x.hei<y.hei;
- }
- bool check(int x,int y,int w)
- {
- if(x<=0||y<=0||x>n||y>m||b[x][y]>=w) return false;
- return true;
- }
- int main()
- {
- scanf("%d%d",&n,&m);
- for(int i=1;i<=n;i++)
- for(int j=1;j<=m;j++)
- f[i][j]=1;
- for(int i=1;i<=n;i++)
- for(int j=1;j<=m;j++)
- scanf("%d",&a[++jl].hei),a[jl].x=i,a[jl].y=j,b[i][j]=a[jl].hei;
- sort(a+1,a+1+jl,cmp);
- for(int i=1;i<=jl;i++)
- for(int j=0;j<4;j++)
- if(check(a[i].x+px[j],a[i].y+py[j],a[i].hei))
- f[a[i].x][a[i].y]=max(f[a[i].x][a[i].y],f[a[i].x+px[j]][a[i].y+py[j]]+1);
- for(int i=1;i<=n;i++)
- for(int j=1;j<=m;j++)
- maxn=max(maxn,f[i][j]);
- printf("%d",maxn);
- return 0;
- }
复制代码 |
|