CF1332A.Exercising Walk

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Alice has a cute cat. To keep her cat fit, Alice wants to design an exercising walk for her cat!

Initially, Alice's cat is located in a cell (x,y)(x,y) of an infinite grid. According to Alice's theory, cat needs to move:

  • exactly aa steps left: from (u,v)(u,v) to (u1,v)(u-1,v) ;
  • exactly bb steps right: from (u,v)(u,v) to (u+1,v)(u+1,v) ;
  • exactly cc steps down: from (u,v)(u,v) to (u,v1)(u,v-1) ;
  • exactly dd steps up: from (u,v)(u,v) to (u,v+1)(u,v+1) .

Note that the moves can be performed in an arbitrary order. For example, if the cat has to move 11 step left, 33 steps right and 22 steps down, then the walk right, down, left, right, right, down is valid.

Alice, however, is worrying that her cat might get lost if it moves far away from her. So she hopes that her cat is always in the area [x1,x2]×[y1,y2][x_1,x_2]\times [y_1,y_2] , i.e. for every cat's position (u,v)(u,v) of a walk x1ux2x_1 \le u \le x_2 and y1vy2y_1 \le v \le y_2 holds.

Also, note that the cat can visit the same cell multiple times.

Can you help Alice find out if there exists a walk satisfying her wishes?

Formally, the walk should contain exactly a+b+c+da+b+c+d unit moves ( aa to the left, bb to the right, cc to the down, dd to the up). Alice can do the moves in any order. Her current position (u,v)(u, v) should always satisfy the constraints: x1ux2x_1 \le u \le x_2 , y1vy2y_1 \le v \le y_2 . The staring point is (x,y)(x, y) .

You are required to answer tt test cases independently.

输入格式

The first line contains a single integer tt ( 1t1031 \le t \le 10^3 ) — the number of testcases.

The first line of each test case contains four integers aa , bb , cc , dd ( 0a,b,c,d1080 \le a,b,c,d \le 10^8 , a+b+c+d1a+b+c+d \ge 1 ).

The second line of the test case contains six integers xx , yy , x1x_1 , y1y_1 , x2x_2 , y2y_2 ( 108x1xx2108-10^8 \le x_1\le x \le x_2 \le 10^8 , 108y1yy2108-10^8 \le y_1 \le y \le y_2 \le 10^8 ).

输出格式

For each test case, output "YES" in a separate line, if there exists a walk satisfying her wishes. Otherwise, output "NO" in a separate line.

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

输入输出样例

  • 输入#1

    6
    3 2 2 2
    0 0 -2 -2 2 2
    3 1 4 1
    0 0 -1 -1 1 1
    1 1 1 1
    1 1 1 1 1 1
    0 0 0 1
    0 0 0 0 0 1
    5 1 1 1
    0 0 -100 -100 0 100
    1 1 5 1
    0 0 -100 -100 100 0

    输出#1

    Yes
    No
    No
    Yes
    Yes
    Yes

说明/提示

In the first test case, one valid exercising walk is $$$$(0,0)\rightarrow (-1,0) \rightarrow (-2,0)\rightarrow (-2,1) \rightarrow (-2,2)\rightarrow (-1,2)\rightarrow(0,2)\rightarrow (0,1)\rightarrow (0,0) \rightarrow (-1,0) $$$$

首页