测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15426. Ela and Crickets

编程题 普及/提高-

题目描述

![](/uploads/acgo/image/76d762ab8b7b77fb_e7263fe9094f.jpeg)Ela likes Chess a lot. During breaks, she usually challenges her co-worker in DTL to some chess games. She's not an expert at classic chess, but she's very interested in Chess variants, where she has to adapt to new rules and test her tactical mindset to win the game.The problem, which involves a non-standard chess pieces type that is described below, reads: given $3$ white crickets on a $n \cdot n$ board, arranged in an "L" shape next to each other, there are no other pieces on the board. Ela wants to know with a finite number of moves, can she put any white cricket on the square on row $x$ , column $y$ ?

An "L"-shape piece arrangement can only be one of the below:

![](/uploads/luogu/CF1737C/514135a9cb3021fdd11c6f5877903e61238e21da_8d5acf341d55.png)![](/uploads/luogu/CF1737C/e135bddf869fc3c4e5900f14eaae8062e1263b64_d983d69daf79.png) ![](/uploads/luogu/CF1737C/b79b64cfe0ed70ae5dd5a6ed54ba57554fdeec32_26b3792a8b66.png)![](/uploads/acgo/image/65918c1627ea6644_cec9b73932a9.jpeg)For simplicity, we describe the rules for crickets on the board where only three white crickets are. It can move horizontally, vertically, or diagonally, but only to a square in some direction that is immediately after another cricket piece (so that it must jump over it). If the square immediately behind the piece is unoccupied, the cricket will occupy the square. Otherwise (when the square is occupied by another cricket, or does not exist), the cricket isn't allowed to make such a move.

See an example of valid crickets' moves on the pictures in the Note section.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^4$ ). The description of the test cases follows.

The first line of each test case contains $n$ ( $4 \le n \le 10^5$ ) — denotes the size of the chessboard.

The second line of each test case contains 6 numbers: $r_1$ , $c_1$ , $r_2$ , $c_2$ , $r_3$ , $c_3$ ( $1 \le r_1, c_1, r_2, c_2, r_3, c_3 \le n$ ) — coordinates of the crickets. The input ensures that the three crickets are arranged in an "L" shape that the legend stated.

The third line of each test case contains 2 numbers: $x$ , $y$ ( $1 \le x, y \le n$ ) — coordinates of the target square.

输出格式

For each test case, print "YES" or "NO" to denotes whether Ela can put a cricket on the target square.

输入输出样例

输入 #1
6
8
7 2 8 2 7 1
5 1
8
2 2 1 2 2 1
5 5
8
2 2 1 2 2 1
6 6
8
1 1 1 2 2 1
5 5
8
2 2 1 2 2 1
8 8
8
8 8 8 7 7 8
4 8
输出 #1
YES
NO
YES
NO
YES
YES

说明/提示

Here's the solution for the first test case. The red square denotes where the crickets need to reach. Note that in chess horizontals are counted from bottom to top, as well as on this picture.

![](/uploads/acgo/image/525c0b2e19de1380_004e3f7577a7.jpeg)
上一题 去做题 下一题