CF1468N.Waste Sorting

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Waste Sorting

The progress is not standing still in Berland. Recently all garbage containers in Bertown, the capital of Berland, were replaced by differentiated recycling bins, each accepting some category of waste. While this will definitely improve the ecological situation, for some citizens it's difficult to get used to the habit of sorting waste.

Monocarp is one of those citizens who tries to get used to waste sorting. Today he has to take out the trash from his house. There are three containers near the Monocarp's house, the first one accepts paper waste, the second one accepts plastic waste, and the third one — all other types of waste. It is possible to fit c1c_1 items into the first container, c2c_2 items into the second container and c3c_3 items into the third container.

Monocarp has a lot of items to throw into containers. Some are made of paper, so Monocarp has to put them into the first container (he has a1a_1 such items), some are made of plastic, so he has to put them into the second container (he has a2a_2 such items), and some are neither paper nor plastic — so Monocarp has to put them into the third container (he has a3a_3 such items).

Unfortunately, there are also two categories of items that Monocarp is unsure of: he has a4a_4 items which are partially made of paper, so he will put each of these items either into the first container or into the third container. Similarly, he has a5a_5 items partially made of plastic, so he has to put each of them either into the second container or into the third container. Obviously, this choice is made separately for each item — for example, Monocarp can throw several partially-plastic items into the second container, and all other partially-plastic items — into the third one.

Now Monocarp wonders: is it possible to put each item into some container so that the first container will hold no more than c1c_1 items, the second one — no more than c2c_2 items, and the third one — no more than c3c_3 items?

Input

The first line contains one integer tt (1t31041 \le t \le 3 \cdot 10^4) — the number of test cases.

Each test case consists of two lines. The first line of each test case contains three integers c1c_1, c2c_2, c3c_3 (0c1,c2,c31080 \le c_1, c_2, c_3 \le 10^8) — the capacities of the containers.

The second line of each test case contains five integers a1a_1, a2a_2, a3a_3, a4a_4, a5a_5 (0ai1080 \le a_i \le 10^8), where aia_i is the number of items of the ii-th category Monocarp has to throw out (i=1i = 1 is paper waste, i=2i = 2 is plastic waste, i=3i = 3 is general waste, i=4i = 4 is partially-paper waste, i=5i = 5 is partially-plastic waste).

Output

For each test case, print either YES if it is possible to fit all items into containers, or NO otherwise. You may print each letter in any case (for example, YES, Yes, yes, yEs will all be recognized as positive answer).

Note

Explanations for the example test cases:

  1. Monocarp can put 11 item of paper waste into the first container, 22 items of plastic waste into the second container, and 33 items of general waste into the third container;
  2. Monocarp can put 11 item of paper waste and 11 item of partially-paper waste into the first container, 22 items of plastic waste into the second container, and 33 items of general waste into the third container;
  3. there is no answer since either the second container should contain 33 items, or the third container should contain 44 items;
  4. Monocarp can put 11 item of paper waste into the first container, 22 items of plastic waste into the second container, and 33 items of general waste, 11 item of partially-paper waste and 11 item of partially-plastic waste into the third container;
  5. there is no waste at all, so all containers can be left empty;
  6. there's no answer since it's impossible to put a paper item into the third container;
  7. Monocarp can put 1010 items of partially-paper waste into the first container, 3737 items of partially-plastic waste into the second container, and 3030 items of partially-paper waste and 1010 items of partially-plastic waste into the third container.

Samples

7
1 2 3
1 2 3 0 0
2 2 3
1 2 3 1 0
2 2 3
1 2 3 0 1
1 2 5
1 2 3 1 1
0 0 0
0 0 0 0 0
0 0 4
1 0 0 0 0
13 37 42
0 0 0 40 47
YES
YES
NO
YES
YES
NO
YES

在线编程 IDE

建议全屏模式获得最佳体验