【Educational Codeforces Round 16】 Codeforces 710E 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.

如果没有删除操作比较好想,直接按顺序dp。但是注意到删除操作只会跟在复制之后【因为它不可能跟在添加之后】,删除两次不如之前删除一次。这样就很好枚举了。

#include<iostream>
#include<algorithm>
using namespace std;
long long dp[10000010],x,y;
int n;
int main()
{
    int i;
    cin>>n>>x>>y;
    for (i=1;i<=n;i++)
      if (i&1)
        dp[i]=min(dp[i-1]+x,min(dp[i/2]+x+y,dp[i/2+1]+x+y));
      else
        dp[i]=min(dp[i-1]+x,dp[i/2]+y);
    cout<<dp[n]<<endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值