HDU 1081 To The Max

Posted siv0106

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1081 To The Max相关的知识,希望对你有一定的参考价值。

这题就是二维前缀和。

 

#include<bits/stdc++.h>
using namespace std;
const int N=110,INF=0x3fffffff;
int n,max_ans,a[N][N],sum[N][N],tmp;
int main()
{
    while(~scanf("%d",&n))
    {
        max_ans=-INF;
        memset(sum,0,sizeof(sum));
        for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++)
            {
                scanf("%d",&a[i][j]);
                sum[i][j]=sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1]+a[i][j];
            }
        for(int l=1;l<=n;l++)
            for(int r=1;r<=n;r++)
                for(int i=l;i<=n;i++)
                    for(int j=r;j<=n;j++)
                    {
                        tmp=sum[i][j]-sum[i-l][j]-sum[i][j-r]+sum[i-l][j-r];
                        max_ans=max(max_ans,tmp);
                    }
        printf("%d
",max_ans);
    }
    return 0;
}

 

以上是关于HDU 1081 To The Max的主要内容,如果未能解决你的问题,请参考以下文章

hdu-1081 To The Max (最大子矩阵和)

HDU 1081 To The Max

HDU1081 To The Max

HDU 1081 To the Max 最大子矩阵(动态规划求最大连续子序列和)

hdu 1081 &amp; poj 1050 To The Max(最大和的子矩阵)

hdu 1081 to be max