CodeForces710E Generate a String

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 nletters 'a'. Help him to determine the amount of time needed to generate the input.

Input

The only line contains three integers nx and y (1 ≤ n ≤ 1071 ≤ 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.

Example

Input
8 1 1
Output
4
Input
8 1 10
Output
8
 
    
f[i] : 生成i个字符需要的时间
如果i是奇数,分为复制后加一个和复制后删一个讨论以及从i-1加一个
如果i是偶数,分为复制和i-1加一个
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <map>
#include <set>
#include <vector>
#include <queue>
#include <cmath>

using namespace std;

const int N = 1e7 + 10;

unsigned long long f[N], n, x, y;

int main() {
    cin >> n >> x >> y;
    f[1] = x;
    for(unsigned long long i = 2 ; i <= n ; i ++) {
        if(i & 1) {
            f[i] = min(f[i - 1] + x, min(f[i / 2], f[i / 2 + 1]) + x + y);
        } else {
            f[i] = min(f[i - 1] + x, f[i / 2] + y);
        }
    }
    cout << f[n] << endl;
}

  

转载于:https://www.cnblogs.com/KingSann/articles/7490734.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值