Codeforces 922A Cloning Toys

A. Cloning Toys

Imp likes his plush toy a lot.

Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the machine to a copied toy, he gets two additional copies.

Initially, Imp has only one original toy. He wants to know if it is possible to use machine to get exactly x copied toys and y original toys? He can't throw toys away, and he can't apply the machine to a copy if he doesn't currently have any copies.

Input

The only line contains two integers x and y (0 ≤ x, y ≤ 109) — the number of copies and the number of original toys Imp wants to get (including the initial one).

Output

Print "Yes", if the desired configuration is possible, and "No" otherwise.

You can print each letter in arbitrary case (upper or lower).

Examples
input
6 3
output
Yes
input
4 2
output
No
input
1000 1001
output
Yes

题意:你最初只有一个玩具,现在有个机器可以实现两种操作:复制原件得到1新原件+1副本,复制副本得到2副本。给你想要得到的原件数和副本数,问你是否可以恰好得到,玩具不可以扔掉。

思路:由于原件只能由原件得来,一定先处理原件,本身已经有一个原件,所以额外需要的是y-1个,同时会多出来y-1个副本,此时判断副本数与x的大小,超过x直接判No,小于时判断两者之差是不是偶数,因为此时原件已经够了,只能通过第二个操作实现。剩下的是边界情况特判即可。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<string>
#include<sstream>
#include<map>
#include<vector>
#include<queue>
#include<stack>
#define ll long long
using namespace std;
ll x,y;
int main()
{
    while(~scanf("%lld%lld",&x,&y))
    {
        if(x==0&&y==1){printf("Yes\n");continue;}         
        if(y==0||y==1){printf("No\n");continue;}      //y==0时必然不存在答案
        ll cp=y-1;                   //满足原件时,多出来的副本个数
        if(cp>x)printf("No\n");
        else
        {
            if((x-cp)%2==0)printf("Yes\n");
            else printf("No\n");
        }
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值