Generate a String CodeForces - 710E(dp)

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-1->n
②n/2->n(n/2直接复制到n,花费y)
如果n是奇数,有三种转换形式
①n-1->n
②n/2->n(n的一半复制到n-1花费y,然后还少一个,采用增加一个的形式,花费x)
③n/2+1->n(n/2+1复制到n+2花费y,多了一个,采用减少一个的形式,花费x)
状态转移方程:

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

代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxx=1e7+100;
ll n,x,y;
ll dp[maxx];

int main()
{
	scanf("%lld%lld%lld",&n,&x,&y);
	memset(dp,-1,sizeof(dp));
	dp[0]=0;
	dp[1]=x;
	for(int i=2;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;
	return 0;
}

努力加油a啊,(o)/~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

starlet_kiss

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值