101571: [AtCoder]ABC157 B - Bingo

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

We have a bingo card with a $3\times3$ grid. The square at the $i$-th row from the top and the $j$-th column from the left contains the number $A_{i, j}$.

The MC will choose $N$ numbers, $b_1, b_2, \cdots, b_N$. If our bingo sheet contains some of those numbers, we will mark them on our sheet.

Determine whether we will have a bingo when the $N$ numbers are chosen, that is, the sheet will contain three marked numbers in a row, column, or diagonal.

Constraints

  • All values in input are integers.
  • $1 \leq A_{i, j} \leq 100$
  • $A_{i_1, j_1} \neq A_{i_2, j_2} ((i_1, j_1) \neq (i_2, j_2))$
  • $1 \leq N \leq 10$
  • $1 \leq b_i \leq 100$
  • $b_i \neq b_j (i \neq j)$

Input

Input is given from Standard Input in the following format:

$A_{1, 1}$ $A_{1, 2}$ $A_{1, 3}$
$A_{2, 1}$ $A_{2, 2}$ $A_{2, 3}$
$A_{3, 1}$ $A_{3, 2}$ $A_{3, 3}$
$N$
$b_1$
$\vdots$
$b_N$

Output

If we will have a bingo, print Yes; otherwise, print No.


Sample Input 1

84 97 66
79 89 11
61 59 7
7
89
7
87
79
24
84
30

Sample Output 1

Yes

We will mark $A_{1, 1}, A_{2, 1}, A_{2, 2}, A_{3, 3}$, and complete the diagonal from the top-left to the bottom-right.


Sample Input 2

41 7 46
26 89 2
78 92 8
5
6
45
16
57
17

Sample Output 2

No

We will mark nothing.


Sample Input 3

60 88 34
92 41 43
65 73 48
10
60
43
88
11
48
73
65
41
92
34

Sample Output 3

Yes

We will mark all the squares.

Input

题意翻译

__Bingo 游戏__ 你是游戏的一个玩家。你有一 $3×3$ 网格的 Bingo 卡。从上往下第 $i$ 行和从左往下第 $j$ 列的方格包含数字 $A_{i,j}$。 主持人将报出 $N$ 个数字 $b_1,b_2,\cdots b_N$。如果我们的 Bingo 卡包含这些数字中的一些,我们将在表上标记它们。 确定当 $N$ 个数字被报完时,我们是否有一个 Bingo,也就是说,表上会有三个标记的数字在同一行、一列或对角线上。 __输入格式__ 按以下格式输入: $A_{1,1}$ $A_{1,2}$ $A_{1,3}$ $A_{2,1}$ $A_{2,2}$ $A_{2,3}$ $A_{3,1}$ $A_{3,2}$ $A_{3,3}$ $N$ $b_1$ $\vdots$ $b_N$ __输出格式__ 如果我们会有一个 Bingo,输出 `Yes`,否则输出 `No`。 __数据范围__ 卡里的数各不相同,主持人报的数也各不相同,它们全部小于100。 $1≤N≤10$。

加入题单

算法标签: