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

#F1107. Generate a String

    ID: 1113 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>搜索动态规划提高难度共享题库Codeforces英文题面题目来源题面语言

Generate a String

题目描述

E. Generate a String
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

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.

Examples
Input
8 1 1
Output
4
Input
8 1 10
Output
8


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