首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
poj2796Feel Good 单调栈
时间:
2015-05-26 21:22:24
阅读:
134
评论:
0
收藏:
0
[点我收藏+]
标签:
//一个长度为n的序列,对于一个区间中的value为这个区间的最小值乘上这个区间的所有数的和
//这就是找每一个点,找以其为最小值的区间
//显然直接暴力法找必然超时
//可以开一个单调递增栈,对于每一个新元素a[i]
//当前值小于等于栈顶元素,表示以栈顶元素为最小值的区间的右端是i
//栈顶元素a[j]出栈 , 由于是单调递增栈,新的栈顶元素a[k]必然小于a[j],故需要更新新的栈顶元素的
//右端值,新元素的左端的值也要更新为a[j]的左端
//一直重复操作直到栈顶元素大于新元素
//这样这个栈的每一个元素出栈时其左右区间必然是刚好最大的以该元素为最小值的区间
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std ;
const int maxn = 100010 ;
typedef __int64 ll ;
struct node
{
int l , r ;
ll num ;
}s[maxn] ;
ll a[maxn] ;
ll sum[maxn] ;
ll ans ;
int ans_l , ans_r ;
void update(int top)
{
int l = s[top].l , r = s[top].r ;
if((sum[r] - sum[l-1])*s[top].num > ans)
{
ans = (sum[r] - sum[l-1])*s[top].num ;
ans_l = l ;
ans_r = r ;
}
if(top > 0)
s[top-1].r = s[top].r ;
}
int main()
{
// freopen("in.txt","r" , stdin) ;
int n ;
while(~scanf("%d" , &n))
{
ans = -1;
int top = -1 ;
sum[0] = 0 ;
for(int i = 1 ;i <= n ;i++)
{
scanf("%I64d" , &a[i]) ;
sum[i] = sum[i-1]+a[i] ;
}
for(int i = 1;i <= n;i++)
{
node v = {i , i ,a[i]};
while(top != -1 && s[top].num >= a[i])
{
update(top) ;
v.l = s[top].l ;
top-- ;
}
s[++top].l = v.l ;
s[top].r = v.r ;
s[top].num = v.num ;
}
while(top != -1)
{
update(top);
top-- ;
}
printf("%I64d\n" , ans) ;
printf("%d %d\n",ans_l , ans_r) ;
}
return 0 ;
}
poj2796Feel Good 单调栈
标签:
原文地址:http://blog.csdn.net/cq_pf/article/details/46013321
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!