3071.Cheap Travel

Time Limit: 1s Memory Limit: 256MB

Ann has recently started commuting by subway. We know that a one ride subway ticket costs a rubles. Besides, Ann found out that she can buy a special ticket for m rides (she can buy it several times). It costs b rubles. Ann did the math; she will need to use subway n times. Help Ann, tell her what is the minimum sum of money she will have to spend to make n rides?

Input Format(From the terminal/stdin)

The single line contains four space-separated integers n, m, a, b (1 \le n,m,a,b \le 1000) - the number of rides Ann has planned, the number of rides covered by the m ride ticket, the price of a one ride ticket and the price of an m ride ticket.

Output Format(To the terminal/stdout)

Print a single integer - the minimum sum in rubles that Ann will need to spend.

Sample Input 1

Copy
6 2 1 2
 · · · \n

Sample Output 1

Copy
6
 \n

Sample Input 2

Copy
5 2 2 3
 · · · \n

Sample Output 2

Copy
8
 \n

Hints

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 three m ride tickets.

Submit

请先 登录

© 2025 FAQs