MOG Round #34Ended |
Fito cannot use a mixed colored liquid as a layer. For example, a new liquid with different color or density cannot be created by mixing two or more different colored liquids.
The input consists of a single test case. The first line consists of an integer $N$ ($1 \leq N \leq 10^5)$, which represents the number of the prepared colored liquids. The following $N$ lines consist of $C_i$ and $D_i$. $C_i$ is a string ($|C_i| <= 20$) consisting of lowercase English alphabet letters and denotes the color of the $i$-th prepared colored liquid. $D_i$ ($1 \leq D_i \leq 10^5$) is an integer and represents the density of the $i$-th prepared colored liquid.
The $N+2$ line consists of an integer $M$ ( $1 \leq M \leq 10^5$), which represents the number of color layers of the cocktail request. The following $M$ lines consists of $O_i$ ($1 \leq i \leq M$). $O_i$ is a string ($|O_i| <= 20$) consisting of lowercase English alphabet letters and denotes the color of the $i$-th layer from top to bottom.
If the requested colorful drink can be served by using some of the prepared colored liquids, print 'Yes'. Otherwise, print 'No' without the quotes.