P14609 [NWRRC 2025] Judging Problem
Description
The judges of NWRRC came up with $n$ problems on a similar topic and decided to use them for $n$ consecutive years, one problem per year. The only question was: in what order should they be used?
Each problem's name consists of two words. Let's call two names $\textit{similar}$ if either their first words are the same or their second words are the same. For example, $\texttt{eight shaped}$ and $\texttt{eight connected}$ are similar, while $\texttt{hello world}$ and $\texttt{world hello}$ are not.
The judges decided to implement the following rule: in the first year, they chose a problem arbitrarily. In every subsequent year, if there was a problem with a name similar to the previous year's problem that was still unused, they chose one of such problems; otherwise, they chose any unused problem.
You are given the names of the problems in chronological order of their use. Determine whether the judges correctly followed the rule above, or if they made a mistake.
Input Format
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 a single integer $n$, denoting the number of problems ($2 \le n \le 10^5$).
The $i$-th of the following $n$ lines contains the name of the $i$-th problem in chronological order: two words consisting of at least $1$ and at most $10$ lowercase English letters each. All problem names are distinct.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$.
Output Format
For each test case, print $\tt{Yes}$ if the judges followed the rule correctly, and $\tt{No}$ otherwise.
Explanation/Hint
In the first test case, each subsequent problem name is similar to the previous one.
In the second test case, the judges should have chosen $\tt{eight\ shaped}$ for the second year.
In the third test case, neither $\tt{binary\ problem}$ nor $\tt{logic\ problem}$ is similar to $\tt{judging\ logic}$; the judges could have chosen either of those problems for the third year.