博客
关于我
CodeForces - 855B Marvolo Gaunt's Ring(dp)
阅读量:289 次
发布时间:2019-03-01

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

Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed it, he is still affected by its curse. Professor Snape is helping Dumbledore remove the curse. For this, he wants to give Dumbledore exactly x drops of the potion he made.

Value of x is calculated as maximum of p·ai + q·aj + r·ak for given p, q, r and array a1, a2, ... an such that 1 ≤ i ≤ j ≤ k ≤ n. Help Snape find the value of x. Do note that the value of x may be negative.

Input

First line of input contains 4 integers n, p, q, r ( - 109 ≤ p, q, r ≤ 109, 1 ≤ n ≤ 105).

Next line of input contains n space separated integers a1, a2, ... an ( - 109 ≤ ai ≤ 109).

Output

Output a single integer the maximum value of p·ai + q·aj + r·ak that can be obtained provided 1 ≤ i ≤ j ≤ k ≤ n.

Examples

Input

5 1 2 31 2 3 4 5

Output

30

Input

5 1 2 -3-1 -2 -3 -4 -5

Output

12

Note

In the first sample case, we can take i = j = k = 5, thus making the answer as 1·5 + 2·5 + 3·5 = 30.

In second sample case, selecting i = j = 1 and k = 5 gives the answer 12.

求max(p*a[i]+q*a[j]+r*a[k]),满足i<=j<=k

首先可以用dp做  dp[j][i]表示前i个数中已经取了j个数的最大值.把p q r存到x[]数组里。

dp[j][i]=max(dp[j-1][i],dp[j][i-1]+x[i]*a[j])    

#include
///vj Busing namespace std;const int N=1e5+5;long long dp[N][4],a[N],x[4];int main(){ long long n,m; while(scanf("%lld%lld%lld%lld",&n,&x[1],&x[2],&x[3])!=EOF) { long long inf=-8e18; for(int i=1;i<=n;i++) scanf("%lld",&a[i]); for(int i=0;i<=n;i++) { for(int j=0;j<=3;j++) dp[i][j]=inf; } dp[1][1]=a[1]*x[1]; for(int i=1;i<=3;i++) { for(int j=1;j<=n;j++) { if(i==1) dp[j][i]=max(dp[j-1][i],a[j]*x[1]); else dp[j][i]=max(dp[j-1][i],dp[j][i-1]+a[j]*x[i]); } } cout<
<<'\n'; } return 0;}

还有一种比较简单的办法  orz

#include
using namespace std;const long long N=-8e18;int main(){ long long n,m,p,q,r; while(scanf("%lld%lld%lld%lld",&n,&p,&q,&r)!=EOF) { long long a=N,b=N,c=N; for(int i=0;i

 

转载地址:http://isio.baihongyu.com/

你可能感兴趣的文章
LiveGBS user/save 逻辑缺陷漏洞复现(CNVD-2023-72138)
查看>>
localhost:5000在MacOS V12(蒙特利)中不可用
查看>>
logstash mysql 准实时同步到 elasticsearch
查看>>
Luogu2973:[USACO10HOL]赶小猪
查看>>
mabatis 中出现&lt; 以及&gt; 代表什么意思?
查看>>
Mac book pro打开docker出现The data couldn’t be read because it is missing
查看>>
MAC M1大数据0-1成神篇-25 hadoop高可用搭建
查看>>
mac mysql 进程_Mac平台下启动MySQL到完全终止MySQL----终端八步走
查看>>
Mac OS 12.0.1 如何安装柯美287打印机驱动,刷卡打印
查看>>
MangoDB4.0版本的安装与配置
查看>>
Manjaro 24.1 “Xahea” 发布!具有 KDE Plasma 6.1.5、GNOME 46 和最新的内核增强功能
查看>>
mapping文件目录生成修改
查看>>
MapReduce程序依赖的jar包
查看>>
mariadb multi-source replication(mariadb多主复制)
查看>>
MariaDB的简单使用
查看>>
MaterialForm对tab页进行隐藏
查看>>
Member var and Static var.
查看>>
memcached高速缓存学习笔记001---memcached介绍和安装以及基本使用
查看>>
memcached高速缓存学习笔记003---利用JAVA程序操作memcached crud操作
查看>>
Memcached:Node.js 高性能缓存解决方案
查看>>