CodeForce 710E - Generate a String

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 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

题意:
  给出n(目标字符串有n个‘a’),x(增加或删除一个‘a’需要多少秒),y(复制并粘贴当前的字符串需要多少秒)
求用最少的时间,生成n个‘a’;
思路:
  dp题目,当n == 0, 1 时需要时间为0, x
  n为奇数时:可以是 n - 1 加上个‘a’ 或者 n + 1 删除一个‘a’
  n为偶数时:就得看看 复制一半个‘a’需要的时间长,还是一个一个的加的时间长
  
AC代码:
 1 # include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 ll a, b, n;
 5 ll dp(ll i)
 6 {
 7     if(i == 0) 
 8         return 0;
 9     if(i == 1) 
10         return a;
11     if(i % 2)
12     {
13         ll i1 = dp(i - 1), i2 = dp(i + 1);
14         return a + min(i1, i2);
15     }
16     else if(i / 2 * a <= b)
17         return i * a;
18     else 
19         return b + dp(i / 2);
20 }
21 int main()
22 {
23     while(~scanf("%I64d", &n))
24     {
25         scanf("%I64d%I64d", &a, &b);
26         printf("%I64d\n", dp(n));
27     }
28     return 0;
29 }
View Code

 

转载于:https://www.cnblogs.com/lyf-acm/p/5798256.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值