CodeForces-1257 B. Magic Stick【思维】

题目链接
题意:
给出x,y和两种操作,问你是否能够通过不限次数的操作将x变成y,操作1:若x是偶数,乘以3/2,操作2:若x>1,x=x-1
思路:
显然x>=y时可以不断通过操作2来得到y,当x<y时,我们考虑:如果x>3,那么可以通过不断操作1(奇数的话先做一次操作2)来变大,那么就变成x>=y的情况,变成前面说到的情况,可以做到,如果x等于1,2,3,只需要特判(x=2&&y=3)的情况,其他情况x都不能通过某种操作变大。
AC代码:

#include <iostream>
#include <cstdio>
#include <memory.h>
#include <vector>
#include <algorithm>
#include <cmath>
#include <map>

using namespace std;
#define ll long long

inline int read() {
    int x = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9') {
        if (ch == '-') f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9') {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}
ll min(ll x, ll y) {return x < y ? x : y;}
const int maxn = 2e5 + 1;
const ll INF=0x3f3f3f;
const int mod = 1e9 + 7;
ll n,arr[maxn],brr[maxn];
int main() {
    int t;
    cin>>t;
    while(t--){
        ll a,b;
        cin>>a>>b;
        if(a>=b){
            cout<<"YES"<<endl;
        }
        else{
            if(a==1||a==3){
                cout<<"NO"<<endl;
            }
            else if(a==2){
                if(b==3) cout<<"YES"<<endl;
                else cout<<"NO"<<endl;
            }
            else cout<<"YES"<<endl;
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值