博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态规划:ZOJ1074-最大和子矩阵 DP(最长子序列的升级版)
阅读量:5032 次
发布时间:2019-06-12

本文共 2466 字,大约阅读时间需要 8 分钟。

To the Max


Time Limit:1 Second     Memory Limit:32768 KB


Problem

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.
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.

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

Output

15 

 

 

解题心得:
1、是一个很明显的动态规划,但是一开始的思路有点混乱,所以在处理的时候可以参照一下的方法:    
          在输入的时候就将矩阵中的每一个数改写为同一行中前面I个数的和(这样才能处理子矩阵)。
          在处理列的时候数字就已经是行的和,这样就可以得到矩阵的和,所以处理子矩阵行的时候只能使用循环得出答案,记录最大的那个子矩阵。
2、在做动态规划的题的时候首先要看出这个题是否可以用动态规划的思想来进行处理,在感觉普通思路行不通的时候可以试着用动态规划的思想来试试。
3、在确定使用动态规划的时候就可以开始推动态转移(注意记录状态,先想最简单的转移,再逐步优化)的方程式,在数据不是很方便的时候可以改写一下数据。例如改写成 几 个数据的和,差。
#include
using namespace std;const int maxn = 150;int maps[maxn][maxn];int main(){ int n,sum,Max; while(~scanf("%d",&n)) { memset(maps,0,sizeof(maps)); Max = -1000000; for(int i=1;i<=n;i++)//考虑为什么要从1开始输入 for(int j=1;j<=n;j++) { int t; scanf("%d",&t); maps[i][j] = maps[i-1][j] + t;//将每一个数改为每一列的和 } for(int i=1;i<=n;i++) { for(int j=i;j<=n;j++) { sum = 0; for(int k=1;k<=n;k++) { int K; K = maps[j][k]-maps[i-1][k]; sum += K;//处理列的方法 sum = max(sum,0);//当sum小于0的时候可以直接舍去,参考最长子序列 Max = max(Max,sum);//记录最大的那个子矩阵的和 } } } printf("%d\n",Max); } return 0;}

转载于:https://www.cnblogs.com/GoldenFingers/p/9107360.html

你可能感兴趣的文章
[bzoj] 2453 维护数列 || 单点修改分块
查看>>
IIS版本变迁
查看>>
mybatis09--自连接一对多查询
查看>>
myeclipse10添加jQuery自动提示的方法
查看>>
【eclipse jar包】在编写java代码时,为方便编程,常常会引用别人已经实现的方法,通常会封装成jar包,我们在编写时,只需引入到Eclipse中即可。...
查看>>
软件工程APP进度更新
查看>>
Python 使用正则替换 re.sub
查看>>
CTF中那些脑洞大开的编码和加密
查看>>
IdentityServer流程图与相关术语
查看>>
BirdNet: a 3D Object Detection Framework from LiDAR information
查看>>
icon fonts入门
查看>>
【Django】如何按天 小时等查询统计?
查看>>
测试用例(一)
查看>>
邮件中的样式问题
查看>>
AJAX 状态值与状态码详解
查看>>
php面向对象编程(oop)基础知识示例解释
查看>>
树的子结构
查看>>
关于根据Build Platform或者OS 加载x86或者x64 dll的问题
查看>>
程序员高效开发的几个技巧
查看>>
js-权威指南学习笔记19.2
查看>>