[Solution] Ela and Crickets Codeforces Solution
white crickets on a 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 , column ?
An "L"-shape piece arrangement can only be one of the below:
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 (). The description of the test cases follows.
The first line of each test case contains () — denotes the size of the chessboard.
The second line of each test case contains 6 numbers: , , , , , () — 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: , () — 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.
No comments:
Post a Comment