Ann has recently started commuting by subway. We know that a one ride subway ticket costsa rubles. Besides, Ann found out that she can buy a special ticket form rides (she can buy it several times). It costsb rubles. Ann did the math; she will need to use subwayn times. Help Ann, tell her what is the minimum sum of money she will have to spend to maken rides?
The single line contains four space-separated integers n, m, a, b (1 ≤ n, m, a, b ≤ 1000) — the number of rides Ann has planned, the number of rides covered by them ride ticket, the price of a one ride ticket and the price of anm ride ticket.
Print a single integer — the minimum sum in rubles that Ann will need to spend.
6 2 1 2
6
5 2 2 3
8
In the first sample one of the optimal solutions is: each time buy a one ride ticket. There are other optimal solutions. For example, buy threem ride tickets.
#include<cstdio>
#include<iostream>
#include<algorithm>
#define min(x,y) (x<y?x:y)
using namespace std;
int main(){
int n,m,a,b,sum1,sum2,temp1,temp2;
while(scanf("%d %d %d %d",&n,&m,&a,&b)!=EOF){
sum1=n*a;
if(n%m==0){
sum2=n/m*b;
}
else if(n>=m){
temp1=(n/m+1)*b;
temp2=n/m*b+n%m*a;
sum2=min(temp1,temp2);
}
else if(n<m){
sum2=b;
}
if(sum1>=sum2){
cout<<sum2<<endl;
}
else{
cout<<sum1<<endl;
}
}
return 0;
}