B. Magic Stick--------思维(稍水)

Recently Petya walked in the forest and found a magic stick.

Since Petya really likes numbers, the first thing he learned was spells for changing numbers. So far, he knows only two spells that can be applied to a positive integer:

If the chosen number a is even, then the spell will turn it into 3a2;
If the chosen number a is greater than one, then the spell will turn it into a−1.
Note that if the number is even and greater than one, then Petya can choose which spell to apply.

Petya now has only one number x. He wants to know if his favorite number y can be obtained from x using the spells he knows. The spells can be used any number of times in any order. It is not required to use spells, Petya can leave x as it is.

Input
The first line contains single integer T (1≤T≤104) — the number of test cases. Each test case consists of two lines.

The first line of each test case contains two integers x and y (1≤x,y≤109) — the current number and the number that Petya wants to get.

Output
For the i-th test case print the answer on it — YES if Petya can get the number y from the number x using known spells, and NO otherwise.

You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES will all be recognized as positive answer).

Example
inputCopy

7
2 3
1 1
3 6
6 8
1 2
4 1
31235 6578234
outputCopy
YES
YES
NO
YES
NO
YES
YES

题意:
给你a和b,若a是偶数 3a/2.若a>1 那就-1.问你a可不可以得到b

解析:
如果a=1,无法变换 只能输出1
如果a=2或者3 不论怎么变换 都是<=3的
其他情况都满足


#include<bits/stdc++.h>
using namespace std;
int t,a,b; 
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>a>>b;
		if(a==1&&b>1) puts("NO");
		else  if(a==2&&b>3) puts("NO");
		else if(a==3&&b>3) puts("NO");
		else puts("YES");
	 } 
 } 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值