CF1709A.Three Doors

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Three Doors

There are three doors in front of you, numbered from 11 to 33 from left to right. Each door has a lock on it, which can only be opened with a key with the same number on it as the number on the door.

There are three keys — one for each door. Two of them are hidden behind the doors, so that there is no more than one key behind each door. So two doors have one key behind them, one door doesn't have a key behind it. To obtain a key hidden behind a door, you should first unlock that door. The remaining key is in your hands.

Can you open all the doors?

Input

The first line contains a single integer tt (1t181 \le t \le 18) — the number of testcases.

The first line of each testcase contains a single integer xx (1x31 \le x \le 3) — the number on the key in your hands.

The second line contains three integers a,ba, b and cc (0a,b,c30 \le a, b, c \le 3) — the number on the key behind each of the doors. If there is no key behind the door, the number is equal to 00.

Values 1,21, 2 and 33 appear exactly once among x,a,bx, a, b and cc.

Output

For each testcase, print "YES" if you can open all the doors. Otherwise, print "NO".

Samples

4
3
0 1 2
1
0 3 2
2
3 1 0
2
1 3 0
YES
NO
YES
NO

在线编程 IDE

建议全屏模式获得最佳体验