https://www.acmicpc.net/problem/16917
#include<stdio.h>
#include<vector>
#include<cmath>
#include<cstring>
using namespace std;
//양념 반 후라이드 반
int main(void)
{
int a,b,c,x,y;//양후반
int res=0;
scanf("%d %d %d %d %d", &a, &b, &c, &x, &y);
if(2*c<(a+b))
{
while((x>0) && (y>0))
{
x--;
y--;
res+=2*c;
}
if(x>0)
{
if(2*c<a)
{
res+=(x*2*c);
}
else
{
res+=a*x;
}
}
else if(y>0)
{
if(2*c<b)
{
res+=(y*2*c);
}
else
{
res+=b*y;
}
}
}
else//a+b<2c a or b >2c
{
res+= a*x + b*y;
}
printf("%d", res);
return 0;
}