A. Road To Zero1000 / 贪心
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Road To Zero1000 / 贪心相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1342/A
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
LL t; cin>>t;
while(t--)
{
LL x,y,a,b; cin>>x>>y>>a>>b;
LL sum=0;
if(2*a>=b) sum=min(x,y)*b+labs(x-y)*a;
else sum=(x+y)*a;
cout<<sum<<endl;
}
return 0;
}
以上是关于A. Road To Zero1000 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章