CF1709A.Three Doors
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are three doors in front of you, numbered from 1 to 3 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?
输入格式
The first line contains a single integer t ( 1≤t≤18 ) — the number of testcases.
The first line of each testcase contains a single integer x ( 1≤x≤3 ) — the number on the key in your hands.
The second line contains three integers a,b and c ( 0≤a,b,c≤3 ) — the number on the key behind each of the doors. If there is no key behind the door, the number is equal to 0 .
Values 1,2 and 3 appear exactly once among x,a,b and c .
输出格式
For each testcase, print "YES" if you can open all the doors. Otherwise, print "NO".
输入输出样例
输入#1
4 3 0 1 2 1 0 3 2 2 3 1 0 2 1 3 0
输出#1
YES NO YES NO