思路:分四种情况讨论即可。
代码:
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long LL;
#define INF 999999999
int main(){
int tcase;
scanf("%d",&tcase);
int t =1;
while(tcase--){
LL IMAX=-INF,ISMAX=-INF,IMIN=INF,ISMIN=INF; ///ti平方的最大次大最小次小
LL JMAX=-INF,JSMAX=-INF,JMIN=INF,JSMIN=INF; ///tj的最大次大最小次小
int n;
LL a,b;
int id1,id2,id3,id4; ///ti 最大最小 tj最大最小
scanf("%d%lld%lld",&n,&a,&b);
for(int i=1;i<=n;i++){
LL NUM,TEMP;
scanf("%lld",&NUM);
TEMP = NUM*NUM;
if(NUMJMAX){
JSMAX = JMAX;
JMAX = NUM;
id1 = i;
}else JSMAX = max(JSMAX,NUM);
if(TEMPIMAX){
ISMAX = IMAX;
IMAX = TEMP;
id3 = i;
}else ISMAX = max(ISMAX,TEMP);
}
LL ans = 0;
if(a>=0&&b>=0){
if(id3!=id1) ans = a*IMAX+b*JMAX;
else ans = max(a*ISMAX+b*JMAX,a*IMAX+b*JSMAX);
}else if(a>0&&b<0){
if(id3!=id2) ans = a*IMAX+b*JMIN;
else ans = max(a*ISMAX+b*JMIN,a*IMAX+b*JSMIN);
}else if(a<0&&b>0){
if(id4!=id1) ans = a*IMIN+b*JMAX;
else ans = max(a*ISMIN+b*JMAX,a*IMIN+b*JSMAX);
}else {
if(id4!=id2) ans = a*IMIN+b*JMIN;
else ans = max(a*IMIN+b*JSMIN,a*ISMIN+b*JMIN);
}
printf("Case #%d: %lld\n",t++,ans);
}
return 0;
}