eolymp
bolt
Try our new interface for solving problems
Problems

Name the Crossing

Name the Crossing

The city of Kyoto is well-known for its Chinese plan: streets are either North-South or East-West. Some streets are numbered, but most of them have real names. Crossings are named after the two streets crossing there, e.g. Kawaramachi-Sanjo is the crossing of Kawaramachi street and Sanjo street. But there is a problem: which name should come first? At first the order seems quite arbitrary: one says Kawaramachi-Sanjo (North-South first) but Shijo-Kawaramachi (East-West first). With some experience, one realizes that actually there seems to be an "order" on the streets, for instance in the above Shijo is "stronger" than Kawaramachi, which in turn is "stronger" than Sanjo. One can use this order to deduce the names of other crossings. You are given as input a list of known crossing names \textbf{X-Y}. Streets are either North-South or East-West, and only orthogonal streets may cross. As your list is very incomplete, you start by completing it using the following rule: \begin{itemize} \item two streets \textbf{A} and \textbf{B} have equal strength if (\textbf{1}) to (\textbf{3}) are all true: \end{itemize} \begin{enumerate} \item they both cross the same third street \textbf{C} in the input \item there is no street \textbf{D} such that \textbf{D-A} and \textbf{B-D} appear in the input \item there is no street \textbf{E} such that \textbf{A-E} and \textbf{E-B} appear in the input \end{enumerate} We use this definition to extend our strength relation: \begin{itemize} \item \textbf{A }is stronger than \textbf{B}, when there is a sequence \textbf{A} = \textbf{A_1, A_2, ..., A_n} = \textbf{B}, with \textbf{n} at least \textbf{2}, where, for any \textbf{i} in \textbf{1..n-1}, either \textbf{A_i-A_\{i+1\}} is an input crossing or \textbf{A_i} and \textbf{A_\{i+1\}} have equal strength. \end{itemize} Then you are asked whether some other possible crossing names \textbf{X-Y} are valid. You should answer affirmatively if you can infer the validity of a name, negatively if you cannot. Concretely: \begin{itemize} \item \textbf{YES} if you can infer that the two streets are orthogonal, and \textbf{X} is stronger than \textbf{Y} \item \textbf{NO} otherwise \end{itemize} \InputFile The input is a sequence of data sets, each of the form \begin{verbatim} N\end{verbatim}\begin{verbatim} Crossing1\end{verbatim}\begin{verbatim} ...\end{verbatim}\begin{verbatim} CrossingN\end{verbatim}\begin{verbatim} M\end{verbatim}\begin{verbatim} Question1\end{verbatim}\begin{verbatim} ...\end{verbatim}\begin{verbatim} QuestionM\end{verbatim}Both Crossings and Questions are of the form \textbf{X-Y} where \textbf{X} and \textbf{Y} are strings of alphanumerical characters, of lengths no more than \textbf{16}. There is no white space, and case matters for alphabetical characters. \textbf{N} and \textbf{M} are between \textbf{1} and \textbf{1000} inclusive, and there are no more than \textbf{200} streets in a data set. The last data set is followed by a line containing a zero. \OutputFile The output for each data set should be composed of \textbf{M+1} lines, the first one containing the number of streets in the Crossing part of the input, followed by the answers to each question, either \textbf{YES} or \textbf{NO} without any spaces.
Time limit 1 second
Memory limit 64 MiB
Input example #1
7
Shijo-Kawaramachi
Karasuma-Imadegawa
Kawaramachi-Imadegawa
Nishioji-Shijo
Karasuma-Gojo
Torimaru-Rokujo
Rokujo-Karasuma
6
Shijo-Karasuma
Imadegawa-Nishioji
Nishioji-Gojo
Shijo-Torimaru
Torimaru-Gojo
Shijo-Kawabata
4
1jo-Midosuji
Midosuji-2jo
2jo-Omotesando
Omotesando-1jo
4
Midosuji-1jo
1jo-Midosuji
Midosuji-Omotesando
1jo-1jo
0
Output example #1
8
YES
NO
YES
NO
YES
NO
4
YES
YES
NO
NO
Source 2004 ACM International Collegiate Programming Contest, Japan Domestic Contest, Ehime, Japan, July 2, Problem F