CF606A.Magic Spheres

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Carl is a beginner magician. He has aa blue, bb violet and cc orange magic spheres. In one move he can transform two spheres of the same color into one sphere of any other color. To make a spell that has never been seen before, he needs at least xx blue, yy violet and zz orange spheres. Can he get them (possible, in multiple actions)?

输入格式

The first line of the input contains three integers aa , bb and cc ( 0<=a,b,c<=10000000<=a,b,c<=1000000 ) — the number of blue, violet and orange spheres that are in the magician's disposal.

The second line of the input contains three integers, xx , yy and zz ( 0<=x,y,z<=10000000<=x,y,z<=1000000 ) — the number of blue, violet and orange spheres that he needs to get.

输出格式

If the wizard is able to obtain the required numbers of spheres, print "Yes". Otherwise, print "No".

输入输出样例

  • 输入#1

    4 4 0
    2 1 2
    

    输出#1

    Yes
    
  • 输入#2

    5 6 1
    2 7 2
    

    输出#2

    No
    
  • 输入#3

    3 3 3
    2 2 2
    

    输出#3

    Yes
    

说明/提示

In the first sample the wizard has 44 blue and 44 violet spheres. In his first action he can turn two blue spheres into one violet one. After that he will have 22 blue and 55 violet spheres. Then he turns 44 violet spheres into 22 orange spheres and he ends up with 22 blue, 11 violet and 22 orange spheres, which is exactly what he needs.

首页