CF1675A.Food for Animals

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In the pet store on sale there are:

  • aa packs of dog food;
  • bb packs of cat food;
  • cc packs of universal food (such food is suitable for both dogs and cats).

Polycarp has xx dogs and yy cats. Is it possible that he will be able to buy food for all his animals in the store? Each of his dogs and each of his cats should receive one pack of suitable food for it.

输入格式

The first line of input contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases in the input.

Then tt lines are given, each containing a description of one test case. Each description consists of five integers a,b,c,xa, b, c, x and yy ( 0a,b,c,x,y1080 \le a,b,c,x,y \le 10^8 ).

输出格式

For each test case in a separate line, output:

  • YES, if suitable food can be bought for each of xx dogs and for each of yy cats;
  • NO else.

You can output YES and NO in any case (for example, strings yEs, yes, Yes and YES will be recognized as a positive response).

输入输出样例

  • 输入#1

    7
    1 1 4 2 3
    0 0 0 0 0
    5 5 0 4 6
    1 1 1 1 1
    50000000 50000000 100000000 100000000 100000000
    0 0 0 100000000 100000000
    1 3 2 2 5

    输出#1

    YES
    YES
    NO
    YES
    YES
    NO
    NO
首页