POJ_1050_最大子矩阵

Posted 冷暖知不知

tags:

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

http://poj.org/problem?id=1050

 

这道题是最大子串的扩展,遍历过每一个子矩阵就好了,期间用了最大子串的方法。

 

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int a[105][105],temp[105];

int main()
{
    int n,ans = 0;
    scanf("%d",&n);
    for(int i = 1;i <= n;i++)
    {
        for(int j = 1;j <= n;j++)   scanf("%d",&a[i][j]);
    }
    for(int i = 1;i <= n;i++)
    {
        memset(temp,0,sizeof(temp));
        for(int j = i;j <= n;j++)
        {
            int sum = 0;
            for(int k = 1;k <= n;k++)
            {
                temp[k] += a[j][k];
                sum += temp[k];
                ans = max(sum,ans);
                if(sum < 0) sum = 0;
            }
        }
    }
    printf("%d",ans);
    return 0;
}

 

以上是关于POJ_1050_最大子矩阵的主要内容,如果未能解决你的问题,请参考以下文章

poj1050最大矩阵和——暴力枚举

最大子矩阵,最大连续子数组进阶,动态规划初级,poj1050

poj1050查找最大子矩阵和

POJ1050 To the Max - 贪心[最大子矩阵和]

poj1050(最大子矩阵和)

[POJ1050]To the Max(最大子矩阵,DP)