博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【矩阵压缩】 poj 1050
阅读量:4881 次
发布时间:2019-06-11

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

题意:给一个矩阵,里面有正负数,求子矩阵和的最大值

 

#include 
#include
#include
#include
using namespace std;int s[105][105],dp[105],n,temp[105];int main(){ // freopen("in.txt","r",stdin); cin>>n; for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) cin>>s[i][j]; int maxx = 0; for (int i=1;i<=n;i++) //start from line i { memset(temp,0,sizeof(temp)); for (int j=i;j<=n;j++) //end at line j { for (int k=1;k<=n;k++) { temp[k]+=s[j][k]; if (temp[k]+dp[k-1]>0) dp[k]=temp[k]+dp[k-1]; else dp[k]=0; if (maxx

 

转载于:https://www.cnblogs.com/balfish/p/4014582.html

你可能感兴趣的文章
tp 引入phpexcel 进行单表格的导入,在线浏览
查看>>
jsp基础速成精华讲解
查看>>
URL to Blob
查看>>
bzoj 3643: Phi的反函数
查看>>
BizTalk Server 2009 Beta初体验
查看>>
HTML中解决双击会选中文本的问题
查看>>
3.单例模式-singleton
查看>>
说说Vue.js的v-for
查看>>
Java第四次作业
查看>>
屏幕录像软件 (Desktop Screen Recorder)
查看>>
【codevs1069】关押罪犯
查看>>
iOS 设计模式之单例
查看>>
POJ 1664 放苹果
查看>>
Pthon3各平台的安装
查看>>
python编程快速上手之第11章实践项目参考答案(11.11.3)
查看>>
JS 之CLASS类应用
查看>>
一个tga工具
查看>>
64bit CPU 知识 (IA32,IA64,EM64T,AMD64)
查看>>
结构体 枚举
查看>>
srtlen实现以及与sizeof的比较
查看>>