您的位置:首页 > 其它

Codeforces Round #206 (Div. 1) A. Vasya and Robot

2013-10-14 16:59 483 查看
A. Vasya and Robot

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

Vasya has n items lying in a line. The items are consecutively numbered by numbers from 1 to n in
such a way that the leftmost item has number 1, the rightmost item has number n.
Each item has a weight, the i-th item weights wi kilograms.

Vasya needs to collect all these items, however he won't do it by himself. He uses his brand new robot. The robot has two different arms — the left one and the right one. The robot can consecutively perform the following actions:

Take the leftmost item with the left hand and spend wi · l energy
units (wi is
a weight of the leftmost item, l is some parameter). If the previous action was the same (left-hand), then the robot spends extra Ql energy
units;

Take the rightmost item with the right hand and spend wj · r energy
units (wj is
a weight of the rightmost item, r is some parameter). If the previous action was the same (right-hand), then the robot spends extra Qr energy
units;

Naturally, Vasya wants to program the robot in a way that the robot spends as little energy as possible. He asked you to solve this problem. Your task is to find the minimum number of energy units robot spends to collect all items.

Input

The first line contains five integers n, l, r, Ql, Qr (1 ≤ n ≤ 105; 1 ≤ l, r ≤ 100; 1 ≤ Ql, Qr ≤ 104).

The second line contains n integers w1, w2, ..., wn (1 ≤ wi ≤ 100).

Output

In the single line print a single number — the answer to the problem.

Sample test(s)

input
3 4 4 19 1
42 3 99


output
576


input
4 7 2 3 9
1 2 3 4


output
34


Note

Consider the first sample. As l = r, we can take an item in turns: first from the left side, then from the right one and last item from the left.
In total the robot spends 4·42 + 4·99 + 4·3 = 576 energy units.

The second sample. The optimal solution is to take one item from the right, then one item from the left and two items from the right. In total the robot spends (2·4) + (7·1) + (2·3) + (2·2 + 9) = 34 energy
units.

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
#define M 100050
#define inf 0x4f4f4f4f
int pri[M],sum[M];
int main()
{
int n,l,r,ql,qr,c[4],ans,i,j,s;
while(scanf("%d%d%d%d%d",&n,&l,&r,&ql,&qr)!=EOF){
for(i=1,sum[0]=0;i<=n;i++){
scanf("%d",&pri[i]);
sum[i]=sum[i-1]+pri[i];
}
int i,j;
ans=inf;
if(l<r){
//ans=sum[1]*l+(n-1)*ql;
for(s=0,i=1,j=n;j>0&&i<=n&&i<=j;j--,i++){
ans=min(ans,(sum[j]-sum[i-1])*l+s+ql*(j-i));
s+=r*pri[j]+pri[i]*l;
}
ans=min(ans,s);
}
else if(l>r){
//ans=sum
*r+(n-1)*qr;
for(s=0,i=1,j=n;j>0&&i<=n&&i<=j;j--,i++){
ans=min(ans,(sum[j]-sum[i-1])*r+s+qr*(j-i));
s+=r*pri[j]+pri[i]*l;
}
ans=min(ans,s);
}
else {
ans=sum
*l;

}
printf("%d\n",ans);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: