A15183 | Three Doors
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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?
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 \le t \le 18$ ) — the number of testcases.
The first line of each testcase contains a single integer $x$ ( $1 \le x \le 3$ ) — the number on the key in your hands.
The second line contains three integers $a, b$ and $c$ ( $0 \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 $0$ .
Values $1, 2$ and $3$ appear exactly once among $x, a, b$ and $c$ .
The first line of each testcase contains a single integer $x$ ( $1 \le x \le 3$ ) — the number on the key in your hands.
The second line contains three integers $a, b$ and $c$ ( $0 \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 $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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted