luogu#P10821. [EC Final 2020] Rooks
[EC Final 2020] Rooks
题目描述
Prof. Pang plays chess against his rival Prof. Shou. They are the only two players in the game. The chessboard is very large and can be viewed as a 2D plane. Prof. Pang placed rooks and Prof. Shou placed rooks. Each rook is a point with integer coordinates on the chessboard. One rook is by another rook if they satisfy all of the following conditions:
- They are placed by different players.
- They have the same -coordinate or -coordinate.
- There is no other rook on the line segment between them.
Help Prof. Pang and Prof. Shou to decide which rooks are attacked.
输入格式
The first line contains two integers () separated by a single space denoting the number of rooks placed by Prof. Pang and the number of rooks placed by Prof. Shou.
The -th () line of the next lines contains two integers () separated by a single space denoting the location of the -th rook placed by Prof. Pang.
The -th () line of the next lines contains two integers () separated by a single space denoting the location of the -th rook placed by Prof. Shou.
It is guaranteed that the rooks placed by the players are distinct (i.e., no two rooks can have the same location).
输出格式
Output a string with length on the first line. The -th () character should be if the -th rook placed by Prof. Pang is attacked and otherwise.
Output a string with length on the second line. The -th () character should be if the -th rook placed by Prof. Shou is attacked and otherwise.
3 2
0 0
0 1
1 0
0 -1
-1 0
100
11