#ABC157B. Bingo

Bingo

题目描述

We have a bingo card with a 3×33\times3 grid. The square at the ii-th row from the top and the jj-th column from the left contains the number Ai,jA_{i, j}.

The MC will choose NN numbers, b1,b2,,bNb_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 NN numbers are chosen, that is, the sheet will contain three marked numbers in a row, column, or diagonal.

我们有一张网格为 3×33\times3 的宾果游戏卡。从上往下第 ii 行和从左往上第 jj 列的方格中包含数字 Ai,jA_{i, j}

主持人将选择 NN 个数字, b1,b2,,bNb_1, b_2, \cdots, b_N 个数字。如果我们的宾果游戏纸上有这些数字,我们就会在我们的游戏纸上标记出来。

确定当选择 NN 个数字时,我们是否会得到宾果,也就是说,纸上的一行、一列或对角线上会有三个标记的数字。

输入格式

输入内容按以下格式标准输入:

A1,1A_{1, 1} A1,2A_{1, 2} A1,3A_{1, 3}
A2,1A_{2, 1} A2,2A_{2, 2} A2,3A_{2, 3}
A3,1A_{3, 1} A3,2A_{3, 2} A3,3A_{3, 3}
NN
b1b_1
\vdots
bNb_N

输出格式

如果有宾果游戏,则打印 "是";否则,打印 "否"。

样例 #1

样例输入 #1

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

样例输出 #1

Yes

样例 #2

样例输入 #2

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

样例输出 #2

No

样例 #3

样例输入 #3

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

样例输出 #3

Yes

说明

数据规模与约定

  • 所有输入值均为整数。
  • 1Ai,j1001 \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))$
  • 1N101 \leq N \leq 10
  • 1bi1001 \leq b_i \leq 100
  • bibj(ij)b_i \neq b_j (i \neq j)

样例 11 解释

我们将标记 A1,1,A2,1,A2,2,A3,3A_{1, 1}, A_{2, 1}, A_{2, 2}, A_{3, 3} ,并完成从左上角到右下角的对角线。

样例 22 解释

我们将不做任何标记。

样例 33 解释

我们将标记所有方格。