跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1913. Cheap Travel

    ID: 1919 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>模拟编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Cheap Travel

题目描述

A. Cheap Travel
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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

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 the m ride ticket, the price of a one ride ticket and the price of an m ride ticket.

Output

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

Examples
Input
6 2 1 2
Output
6
Input
5 2 2 3
Output
8
Note

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.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1490 题。保留原作者与原赛事署名。