https://codeforces.com/problemset/problem/710/E
思路:挺有意思的一道題,
直接去想的話會發現洗掉是有后效性的,
但是先奇偶討論可以得知,對于當前點是偶數,如果后面更新過來不如前面一個減掉再乘,因此對于偶數不用考慮后來的,于是對于奇數的后效性考慮,奇數的后面一個是偶數,可以從前面一個乘到后面再減來更新這個點的dp狀態,
#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=1e7+1000;
typedef long long LL;
inline LL read(){LL x=0,f=1;char ch=getchar(); while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
LL dp[maxn];
int main(void){
cin.tie(0);std::ios::sync_with_stdio(false);
memset(dp,0x3f,sizeof(dp));
dp[0]=0;
LL n,x,y;cin>>n>>x>>y;
for(LL i=1;i<=n;i++){
if(i%2==0){
dp[i]=min(dp[i-1]+x,dp[i/2]+y);
}
else if(i&1){
dp[i]=min(dp[i-1]+x,dp[(i+1)/2]+y+x);
}
}
cout<<dp[n]<<"\n";
return 0;
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/282645.html
標籤:其他
