Memo
•
양념 1마리를 사는 경우보다 후라이드가 남더라도 반반 2마리를 사는게 싸다면 반반 두마리를 사도록 해야한다!
Code
제출 날짜
@4/8/2021
메모리
2016 KB
시간
0 ms
#include <iostream>
#include <vector>
int A, B, C, x, y, result;
void output()
{
std::cout << result;
}
void solution()
{
result = (C * 2 < A + B)
? 2 * std::min(x, y) * C + (x - std::min(x, y)) * std::min(A, 2 * C) + (y - std::min(x, y)) * std::min(B, 2 * C) \
: result = x * A + y * B;
}
void input()
{
std::cin >> A >> B >> C >> x >> y;
}
void preset()
{
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
}
int main()
{
preset();
input();
solution();
output();
}
C++
복사