博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ - 2796 Feel Good 单调递增栈+前缀和
阅读量:5170 次
发布时间:2019-06-13

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

Feel Good

Bill is developing a new mathematical theory for human emotions. His recent investigations are dedicated to studying how good or bad days influent people's memories about some period of life. 
A new idea Bill has recently developed assigns a non-negative integer value to each day of human life. 
Bill calls this value the emotional value of the day. The greater the emotional value is, the better the daywas. Bill suggests that the value of some period of human life is proportional to the sum of the emotional values of the days in the given period, multiplied by the smallest emotional value of the day in it. This schema reflects that good on average period can be greatly spoiled by one very bad day. 
Now Bill is planning to investigate his own life and find the period of his life that had the greatest value. Help him to do so.

Input

The first line of the input contains n - the number of days of Bill's life he is planning to investigate(1 <= n <= 100 000). The rest of the file contains n integer numbers a1, a2, ... an ranging from 0 to 10 
6 - the emotional values of the days. Numbers are separated by spaces and/or line breaks.

Output

Print the greatest value of some period of Bill's life in the first line. And on the second line print two numbers l and r such that the period from l-th to r-th day of Bill's life(inclusive) has the greatest possible value. If there are multiple periods with the greatest possible value,then print any one of them.

Sample Input

63 1 6 4 5 2

Sample Output

603 5 单调递增栈,遍历最小值,找左右两端点,前缀和求出区间和×最小值,更新最大解。
#include
#include
#include
using namespace std;int main(){ int n,i; long long max; long long a[100005],b[100005],l[100005],r[100005]; stack
s; scanf("%d",&n); memset(a,0,sizeof(a)); memset(b,0,sizeof(b)); memset(l,0,sizeof(l)); memset(r,0,sizeof(r)); for(i=1;i<=n;i++){ scanf("%lld",&a[i]); b[i]+=b[i-1]+a[i]; } for(i=1;i<=n;i++){ while(s.size()&&a[s.top()]>=a[i]) s.pop(); l[i]=s.size()==0?1:(s.top()+1); s.push(i); } while(s.size()) s.pop(); for(i=n;i>=1;i--){ while(s.size()&&a[s.top()]>=a[i]) s.pop(); r[i]=s.size()==0?n:(s.top()-1); s.push(i); } max=0; int ll=1,rr=1; for(i=1;i<=n;i++){ if((b[r[i]]-b[l[i]-1])*a[i]>max){ max=(b[r[i]]-b[l[i]-1])*a[i]; ll=l[i]; rr=r[i]; } } printf("%lld\n%d %d\n",max,ll,rr); return 0;}

 

转载于:https://www.cnblogs.com/yzm10/p/7224337.html

你可能感兴趣的文章
树莓派Android Things物联网开发:树莓派GPIO引脚图
查看>>
矩阵快速幂---BestCoder Round#8 1002
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
有关快速幂取模
查看>>
NOI2018垫底记
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
获取国内随机IP的函数
查看>>