最大子矩阵 递推 扫描线
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | #include<bits/stdc++.h> #include<iostream> using namespace std; typedef long long ll; int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}}; ll mod=19260817; char cun[1005][1005]; int down[1005][1005]; int lefts[1005][1005]; int righ[1005][1005]; int main() { ios::sync_with_stdio( false ); cin.tie(0); cout.tie(0); int t; cin>>t; while (t--) { int n,m; cin>>n>>m; char temp; for ( int i=1;i<=n;i++) { for ( int j=1;j<=m;j++) { cin>>cun[i][j]; } } for ( int i=1;i<=n;i++) { int ro=m+1,lo=0; for ( int j=1;j<=m;j++) { if (cun[i][j]== 'R' ) { down[i][j]=0; lefts[i][j]=0; righ[i][j]=0; lo=j; } else { down[i][j]=down[i-1][j]+1; if (down[i][j]!=1) lefts[i][j]=min(lefts[i-1][j],j-lo-1); else lefts[i][j]=j-lo-1; } } for ( int j=m;j>=1;j--) { if (cun[i][j]== 'R' ) { ro=j; } else { if (down[i][j]!=1) righ[i][j]=min(righ[i-1][j],ro-j-1); else righ[i][j]=ro-j-1; } } } int ans=0; for ( int i=1;i<=n;i++) { for ( int j=1;j<=m;j++) { ans=max(ans,(righ[i][j]+lefts[i][j]+1)*down[i][j]); } } cout<<ans*3<< '\n' ; for ( int i=1;i<=n;i++) { for ( int j=1;j<=m;j++) { down[i][j]=0; lefts[i][j]=0; righ[i][j]=0; } } } } |
Uvalive 3029 left right代表移动的极限距离 down代表能往上走的极限距离
#include<bits/stdc++.h>#include<iostream>
using namespace std;typedef long long ll;int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};ll mod=19260817;char cun[1005][1005];int down[1005][1005];int lefts[1005][1005];int righ[1005][1005];int main(){
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t; cin>>t; while(t--) { int n,m; cin>>n>>m; char temp;
for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { cin>>cun[i][j];
} }
for(int i=1;i<=n;i++) { int ro=m+1,lo=0; for(int j=1;j<=m;j++) { if(cun[i][j]=='R') { down[i][j]=0; lefts[i][j]=0; righ[i][j]=0; lo=j; } else { down[i][j]=down[i-1][j]+1; if(down[i][j]!=1) lefts[i][j]=min(lefts[i-1][j],j-lo-1); else lefts[i][j]=j-lo-1; } } for(int j=m;j>=1;j--) { if(cun[i][j]=='R') {
ro=j; } else { if(down[i][j]!=1) righ[i][j]=min(righ[i-1][j],ro-j-1); else righ[i][j]=ro-j-1; } } } int ans=0; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { ans=max(ans,(righ[i][j]+lefts[i][j]+1)*down[i][j]); } } cout<<ans*3<<'\n'; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { down[i][j]=0; lefts[i][j]=0; righ[i][j]=0; } } }
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步