Codeforces 520B. Two Buttons

本文探讨了从整数N通过两种操作达到M的最短路径问题:减1或加倍。采用两种方法解决该问题,一是使用广度优先搜索算法进行正向搜索,二是采取逆向思维,从M出发通过加1或除以2的操作返回N,以减少操作次数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

方法一:

可以看出,n大于m,直接输出n-m即可。

否则直接BFS了

#include<bitset>
#include<map>
#include<vector>
#include<cstdio>
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<stack>
#include<queue>
#include<set>
#define inf 0x3f3f3f3f
#define mem(a,x) memset(a,x,sizeof(a))
#define F first
#define S second
using namespace std;

typedef long long ll;
typedef pair<int,int> pii;

const int N=123,MOD=1e9+7;
int boys[111];
int girls[111];
int dp[111][111];
int vis[600000];
struct node{
    int x,step;
};
int main()
{
    int n,m;scanf("%d%d",&n,&m);
    if(n >=m){
        printf("%d\n",n-m);return 0;
    }
    queue<node>Q;
    node s ;s.x = n;
    s.step = 0;
    Q.push(s);
    while(!Q.empty()){
        node now = Q.front();Q.pop();
        if(now.x == m){
            printf("%d\n",now.step);
            return 0;
        }
        int lx = now.x*2;
        int rx= now.x-1;
        node nt;nt.step = now.step +1;
        if(lx >0 && lx < m*2 && !vis[lx]){
            nt.x = lx;
            vis[nt.x] = 1;
            Q.push(nt);
        }
        if(rx >0 && rx < m*2  && !vis[rx]){
            nt.x = rx;
            vis[nt.x] = 1;
            Q.push(nt);

        }
    }

    return 0;
}

方法二,

Suppose that at some point we perform two operations of type 1 and then one operation of type 2; but in this case one operation of type 2 and one operation of type 1 would lead to the same result, and the sequence would contain less operations then before. That reasoning implies that in an optimal answer more than one consecutive operation of type 1 is possible only if no operations of type 2 follow, that is, the only situation where it makes sense is when n is smaller than m and we just need to make it large enough. Under this constraint, there is the only correct sequence of moves: if n is smaller than m, we just add 1 until they become equal; else we divide n by 2 if it is even, or add 1 and then divide by 2 if it is odd. The length of this sequence can be found in .

题意是n有两种操作,一个是减一。一个是翻倍。

于是,我们倒过来想,m到n有两种操作,一种是加一,一种是减小一半。

  考虑这种情况,当两个数,例如4 6 ,6 + 1 + 1 然后在 /2 ,花费3 , 6/2 + 1花费2.

因此,超过一次的+1操作在这种情况下都是多消耗时间的,因此,尽可能的使用2操作,/2.直到不能使用,也就是m <= n的时候。

int main()
{
    int n,m;scanf("%d%d",&n,&m);
    int step =0;
    while(n < m){
        if(m&1){
            m++;
        }
        else{
            m>>=1;
        }
        step++;
    }
    printf("%d\n",step+n-m);
    return 0;
}





### Codeforces Div.2 比赛难度介绍 Codeforces Div.2 比赛主要面向的是具有基础编程技能到中级水平的选手。这类比赛通常吸引了大量来自全球不同背景的参赛者,包括大学生、高中生以及一些专业人士。 #### 参加资格 为了参加 Div.2 比赛,选手的评级应不超过 2099 分[^1]。这意味着该级别的竞赛适合那些已经掌握了一定算法知识并能熟练运用至少一种编程语言的人群参与挑战。 #### 题目设置 每场 Div.2 比赛一般会提供五至七道题目,在某些特殊情况下可能会更多或更少。这些题目按照预计解决难度递增排列: - **简单题(A, B 类型)**: 主要测试基本的数据结构操作和常见算法的应用能力;例如数组处理、字符串匹配等。 - **中等偏难题(C, D 类型)**: 开始涉及较为复杂的逻辑推理能力和特定领域内的高级技巧;比如图论中的最短路径计算或是动态规划入门应用实例。 - **高难度题(E及以上类型)**: 对于这些问题,则更加侧重考察深入理解复杂概念的能力,并能够灵活组合多种方法来解决问题;这往往需要较强的创造力与丰富的实践经验支持。 对于新手来说,建议先专注于理解和练习前几类较容易的问题,随着经验积累和技术提升再逐步尝试更高层次的任务。 ```cpp // 示例代码展示如何判断一个数是否为偶数 #include <iostream> using namespace std; bool is_even(int num){ return num % 2 == 0; } int main(){ int number = 4; // 测试数据 if(is_even(number)){ cout << "The given number is even."; }else{ cout << "The given number is odd."; } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值