Preparando MOJI

Generate a String

2000ms 524288K

Description:

zscoder wants to generate an input file for some programming competition problem.

His input is a string consisting of n letters 'a'. He is too lazy to write a generator so he will manually generate the input in a text editor.

Initially, the text editor is empty. It takes him x seconds to insert or delete a letter 'a' from the text file and y seconds to copy the contents of the entire text file, and duplicate it.

zscoder wants to find the minimum amount of time needed for him to create the input file of exactly n letters 'a'. Help him to determine the amount of time needed to generate the input.

Input:

The only line contains three integers n, x and y (1 ≤ n ≤ 107, 1 ≤ x, y ≤ 109) — the number of letters 'a' in the input file and the parameters from the problem statement.

Output:

Print the only integer t — the minimum amount of time needed to generate the input file.

Sample Input:

8 1 1

Sample Output:

4

Sample Input:

8 1 10

Sample Output:

8

Informação

Codeforces

Provedor Codeforces

Código CF710E

Tags

dfs and similardp

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:08:48

Relacionados

Nada ainda