1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| #include<bits/stdc++.h> using namespace std; inline int read(){ int res=0,f=1;char ch=getchar(); while(ch<'0'ch>'9'){if(ch=='-') f=-1;ch=getchar();} while(ch>='0'&&ch<='9') res=res*10+ch-'0',ch=getchar(); return res*f; } inline void write(int x){ if(x<0) putchar('-'),x=-x; if(x<10) putchar(x+'0'); else write(x/10),putchar(x%10+'0'); } int n,m,a[510][510],inf=2e9,now,ans,p,vis[510][510]; const int dx[]={0,0,-1,1}, dy[]={1,-1,0,0}; pair<int,int> q[510]; inline void dfs(int x,int y){ for(int i=0;i<4;i++){ int xx=x+dx[i],yy=y+dy[i]; if(xx<1yy<1xx>nyy>m) continue ; if(a[xx][yy]<=a[x][y]) continue ; if(vis[xx][yy]) continue ; vis[xx][yy]=1; if(xx==1) q[now].first=min(q[now].first,yy),q[now].second=max(q[now].second,yy); dfs(xx,yy); } } int main(){ n=read(),m=read(); for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) a[i][j]=read(); for(int i=1;i<=m;i++) q[i]=make_pair(inf,0); for(int i=1;i<=m;i++) memset(vis,0,sizeof(vis)),vis[n][i]=1,now=i,dfs(n,i); for(int i=1;i<=m;i++) if(q[i].first==inf) ans++; if(ans) return n==1?(putchar('1')):(putchar('0')),putchar('\n'),write(ans),putchar('\n'),0; sort(q+1,q+m+1); for(int i=1;i<=m;i++){ if(q[i].first<=p&&p<=q[i].second) continue ; ans++;p=q[i].second; } return putchar('1'),putchar('\n'),write(ans),putchar('\n'),0; }
|