hdu 1081最大子矩阵的和DP

To The Max

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 8210    Accepted Submission(s): 3991

Problem Description

Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1 x 1 or greater located within the whole array. The sum of a rectangle is the sum of all the elements in that rectangle.
In this problem the sub-rectangle with the largest sum is referred to as the maximal sub-rectangle.

As an example, the maximal sub-rectangle of the array:

0 -2 -7 0

9 2 -6 2

-4 1 -4 1

-1 8 0 -2

is in the lower left corner:

9 2

-4 1

-1 8

and has a sum of 15.

Input

The input consists of an N x N array of integers. The input begins with a single positive integer N on a line by itself, indicating the size of the square two-dimensional array. This is followed by N 2 integers separated by whitespace
(spaces and newlines). These are the N 2 integers of the array, presented in row-major order. That is, all numbers in the first row, left to right, then all numbers in the second row, left to right, etc. N may be as large as 100. The numbers in the array will
be in the range [-127,127].

Output

Output the sum of the maximal sub-rectangle.

Sample Input

4
0 -2 -7 0 9 2 -6 2
-4 1 -4 1 -1
8 0 -2

Sample Output

15

这道题题意很清楚:给一个N*N的矩阵,求它的子矩阵(元素和最大);

(1)首先得清楚 对于一维数组如何求它的最大子段和;
int sum=0,Max=-9999999;
for(int i=1;i<=n;i++)//a数组一共用n个元素,遍历一遍即可
{
 if(sum<0)sum=0; //如果sum都小于0了,前面的就可以不要了,从头再来,初始化0
 sum+=a[i];
 if(sum>Max)Max=sum;   //不断更新Max,最终的Max就是最大字段和
} 

(2)清楚一维最大字段和的解法之后,再接着看二维的,经典方法就是将二维的压缩为一维的,如果这个压缩过程想明白了就简单了;

举个例子:4*4的矩阵

0 -2 -7 0

9 2 -6 2

-4 1 -4 1

-1 8 0 -2

1.将第一列看成一维的求出最大的Max;

2.将第一列和第二列合并 看成一维的求出最大的Max

3.将第一列,第二列,第三列合并,看成一维的求出最大的Max;

4.将第一列,第二列,第三列,第四列合并,看成一维的求出最大的Max;

5.将第二列看成一维 求最值

6.将第二列,第三列合并成一维的求最值

7.将第二列,第三列,第四列合并一维 求最值

8.将第三列看成一维的,求最值

9.将第三列,第四合并一维求最值;

10.将第四列看成一维的,求最值

End ~~~~~~压缩过程就是这样的~~应该能看懂!!! 那么 压缩之前稍微处理一下: dp[i][j]表示 第i行前j列元素之和;

那么比如合并 第二列和第三列的时候就是这样 : dp[1][3]-dp[1][2-1] 就是说第一行的前3个元素的和减去第一行的前1个元素的和当作一维的处理~~~依次类推


#include <iostream>
#include <stdio.h>
#include <string.h>
#include <string>
const int maxn=110;
using namespace std;
int dp[maxn][maxn];
int main()
{
 int n;
 while(cin>>n)
 {
  memset(dp,0,sizeof(dp));
  for(int i=1;i<=n;i++)  //dp[i][j]表示第i行的前j个元素
   for(int j=1;j<=n;j++)
   {
    cin>>dp[i][j];
    dp[i][j]+=dp[i][j-1];
   }

  int Max=-99999999;
  for(int i=1;i<=n;i++)
   for(int j=i;j<=n;j++)
   {
     int sum=0;
     for(int k=1;k<=n;k++)
     {
       if(sum<0)sum=0;
       sum+=dp[k][j]-dp[k][i-1];  //dp[k][j]-dp[k][i-1]表示第k行第i到第j个元素的和
       if(sum>Max)Max=sum;
     }
   }
   cout<<Max<<endl;
 }
 return 0;
}

hdu 1081最大子矩阵的和DP

时间: 2024-10-16 00:19:35

hdu 1081最大子矩阵的和DP的相关文章

hdu 1081 To The Max(dp+化二维为一维)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1081 To The Max Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 8839    Accepted Submission(s): 4281 Problem Description Given a two-dimensional ar

HDU 1081 to the max 基础DP 好题

To The Max Problem Description Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1 x 1 or greater located within the whole array. The sum of a rectangle is the sum of all the elements

hdu 1081(最大子矩阵)

To The Max Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 10920    Accepted Submission(s): 5229 Problem Description Given a two-dimensional array of positive and negative integers, a sub-rectan

HDU 1081 最大子矩阵和

To The Max Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 11715    Accepted Submission(s): 5661 Problem Description Given a two-dimensional array of positive and negative integers, a sub-rectan

HDU 1003 &amp;&amp; HDU 1081(最大子列和,最大子矩阵和).

最大子列和,及其扩展最大子矩阵和,都是比较经典的dp,把这两题写在一起,共大家参考学习. ~~~~ lz弱菜啊,到现在还只能写这么水的DP...orz. ~~~~ 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1003 http://acm.hdu.edu.cn/showproblem.php?pid=1081 题意应该比较好理解,不解释了. 1003: #include<cstdio> #include<iostream> #inc

HDU 1081 To The Max(DP)

题意  求一个n*n矩阵的最大子矩阵和 HDU 1003 max sum 的升级版   把二维简化为一维就可以用1003的方法去做了  用mat[i][j]存  第i行前j个数的和   那么mat[k][j]-mat[k][i]就表示第k行  第i+1个数到第j个数的和了   再将k从一枚举到n就可以得到这个这个宽度为j-i的最大矩阵和了   然后i,j又分别从1枚举到n就能得到结果了   和1003的方法一样  只是多了两层循环 #include<cstdio> #include<cs

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

转载请注明出处:http://blog.csdn.net/u012860063 Description Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1*1 or greater located within the whole array. The sum of a rectangle is the sum

HDU 2830 Matrix Swapping II (DP,最大全1矩阵)

题意  给你一个n*m矩阵  每列都可以随便交换位置   求最优交换后最大的全1子矩阵 又是HDU 1505 1506的变种  但这个更容易了  因为每列都可以交换位置了   那么这一行中所有比i高的都可以与i相邻了  只需要统计这一行有多少个比i高就行了   可以在算出每一行后  把高度大的放前面去  用num[i]记录排序后的列原来的数  这样就有j列比h[i][num[j]]高了  最后的答案也就是max(j*h[i][num[j]]) #include<cstdio> #include

hdu 1559最大子矩阵

一直很少练dp~这几天再学学~~ 在本题中:a[i][j]的值表示左上角为(1,1)右下角为(i,j)的矩阵的所有元素之和~ 给你一个m×n的整数矩阵,在上面找一个x×y的子矩阵,使子矩阵中所有元素的和最大. Input 输入数据的第一行为一个正整数T,表示有T组测试数据.每一组测试数据的第一行为四个正整数m,n,x,y(0<m,n<1000 AND 0<x<=m AND 0<y<=n),表示给定的矩形有m行n列.接下来这个矩阵,有m行,每行有n个不大于1000的正整数