408895: GYM103372 J Three Competitions

Memory Limit:1024 MB Time Limit:5 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

J. Three Competitionstime limit per test5 secondsmemory limit per test1024 megabytesinputstandard inputoutputstandard output

Last month, $$$n$$$ people participated in three competitions. The people are labeled with distinct integers from $$$1$$$ to $$$n$$$. In each competition, the people were sorted by performance and got ranked from $$$1$$$ to $$$n$$$. The lower the rank, the better the player. There were no ties in any of the rankings.

Today, instead of $$$n$$$ people participating at once, two people compete head-to-head. The winner of the match is the person who wins at least two out of three competitions. The winner then proceeds to compete with another person. This turned out to be quite interesting: even if a person $$$a$$$ cannot directly win against another person $$$b$$$, it's possible that another person $$$c$$$ wins against $$$b$$$ and then $$$a$$$ wins against $$$c$$$. That way, we can say that $$$a$$$ "indirectly" wins against $$$b$$$. It's also possible that two people can indirectly win against each other!

Formally, a person $$$a$$$ is said to directly win against another person $$$b$$$ if $$$a$$$ has a lower rank than $$$b$$$ in at least two competitions. Also, $$$a$$$ is said to indirectly win against $$$b$$$ if there exists a sequence of people $$$p_1, p_2, \cdots, p_k$$$ ($$$k \geq 2$$$) such that $$$p_i$$$ directly wins against $$$p_{i+1}$$$ for all $$$i = 1, \cdots, k-1$$$, $$$p_1 = a$$$ and $$$p_k = b$$$.

Given the ranks of the people in each competition, answer $$$q$$$ questions asking whether person $$$a$$$ indirectly wins against another person $$$b$$$.

Input

The first line contains a single integer $$$n\ (2 \leq n \leq 2 \cdot 10^5)$$$, the number of people.

Each of the next $$$n$$$ lines contains three integers, which represent the ranks of each person in each of the three competitions, in order from person $$$1$$$ to person $$$n$$$. For each competition, each integer rank from $$$1$$$ to $$$n$$$ appears exactly once.

The next line contains a single integer $$$q\ (1 \leq q \leq 2 \cdot 10^5)$$$, the number of questions.

Each of the next $$$q$$$ lines contains two integers $$$a$$$ and $$$b\ (1 \le a, b \le n$$$, $$$a \neq b)$$$, asking whether person $$$a$$$ indirectly wins against person $$$b$$$.

Output

Output $$$Q$$$ lines. The $$$i$$$-th line should be either YES or NO. If person $$$a$$$ indirectly wins against person $$$b$$$, output YES, otherwise output NO.

ExampleInput
4
2 4 3
3 1 4
4 3 2
1 2 1
3
1 2
2 1
3 4
Output
YES
YES
NO
Note

Person 1 directly (and indirectly) wins against 2. Person 2 doesn't directly win against 1, but 2 directly wins against 3 and 3 directly wins against 1, so 2 indirectly wins against 1.

加入题单

算法标签: