CodeForces 520B Two Buttons
Description
Vasya has found a strange device. On the front panel of a device there are: a red button, a blue button and a display showing some positive integer. After clicking the red button, device multiplies the displayed number by two. After clicking the blue button, device subtracts one from the number on the display. If at some point the number stops being positive, the device breaks down. The display can show arbitrarily large numbers. Initially, the display shows number n.
Bob wants to get number m on the display. What minimum number of clicks he has to make in order to achieve this result?
Input
The first and the only line of the input contains two distinct integers n and m (1 ≤ n, m ≤ 104), separated by a space .
Output
Print a single number — the minimum number of times one needs to push the button required to get the number m out of number n.
Sample Input
4 6
2
10 1
9
Hint
In the first example you need to push the blue button once, and then push the red button once.
In the second example, doubling the number is unnecessary, so we need to push the blue button nine times.
思路1:math 对于n < m时,从m出发,若m为偶数,m减半,否则,加1减半(对应结果加1),直到m <= n

#include <cstdio> #include <cstring> #include <iostream> using namespace std; int n, m; void solve() { cin >> n >> m; if(n >= m) {cout << n - m << endl;return;} int ans = 0; while(n < m) { if(m & 1) {ans++;m++;} m >>= 1; ans++; } ans += n - m; cout << ans << endl; } int main() { solve(); return 0; }
思路2:bfs + 剪枝(记忆化)

/*times memy 78ms 2104k by orc */ #include <iostream> #include <algorithm> #include <queue> #include <cstring> using namespace std; int n ,m; bool vis[20005];//此处的vis标记数组并不是像以往一样标记有没有做过而做到不走重复路径 struct node{ //这里是做备忘录,记忆化搜索 int x; int cnt; }; void bfs(node v) { memset(vis,false,sizeof vis); queue<node> que; que.push(v); node now, nex; while(!que.empty()) { now = que.front(); que.pop(); if(vis[now.x]) continue; if(now.x <= 0) continue;//既然要做备忘录,那么下标就不能为0 if(now.x > m){ //重要剪枝,若now.x > m, 即now.x * 2就没必要入队,只能通过 - 1 来达到状态m nex.x = now.x - 1; nex.cnt = now.cnt + 1; que.push(nex); continue; } if(now.x == m) {cout << now.cnt << endl; return;} nex.x = now.x - 1; nex.cnt = now.cnt + 1; que.push(nex); nex.x = now.x * 2; nex.cnt = now.cnt + 1; que.push(nex); vis[now.x] = true;//循环结尾处对当前出队元素now标记 } } int main() { cin >> n >> m; if(n >= m) cout << n - m << endl; else { node v; v.x = n; v.cnt = 0; bfs(v); } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧