A12122 | Metro
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice has a birthday today, so she invited home her best friend Bob. Now Bob needs to find a way to commute to the Alice's home.
In the city in which Alice and Bob live, the first metro line is being built. This metro line contains $n$ stations numbered from $1$ to $n$ . Bob lives near the station with number $1$ , while Alice lives near the station with number $s$ . The metro line has two tracks. Trains on the first track go from the station $1$ to the station $n$ and trains on the second track go in reverse direction. Just after the train arrives to the end of its track, it goes to the depot immediately, so it is impossible to travel on it after that.
Some stations are not yet open at all and some are only partially open — for each station and for each track it is known whether the station is closed for that track or not. If a station is closed for some track, all trains going in this track's direction pass the station without stopping on it.
When the Bob got the information on opened and closed stations, he found that traveling by metro may be unexpectedly complicated. Help Bob determine whether he can travel to the Alice's home by metro or he should search for some other transport.
In the city in which Alice and Bob live, the first metro line is being built. This metro line contains $n$ stations numbered from $1$ to $n$ . Bob lives near the station with number $1$ , while Alice lives near the station with number $s$ . The metro line has two tracks. Trains on the first track go from the station $1$ to the station $n$ and trains on the second track go in reverse direction. Just after the train arrives to the end of its track, it goes to the depot immediately, so it is impossible to travel on it after that.
Some stations are not yet open at all and some are only partially open — for each station and for each track it is known whether the station is closed for that track or not. If a station is closed for some track, all trains going in this track's direction pass the station without stopping on it.
When the Bob got the information on opened and closed stations, he found that traveling by metro may be unexpectedly complicated. Help Bob determine whether he can travel to the Alice's home by metro or he should search for some other transport.
输入格式
The first line contains two integers $n$ and $s$ ( $2 \le s \le n \le 1000$ ) — the number of stations in the metro and the number of the station where Alice's home is located. Bob lives at station $1$ .
Next lines describe information about closed and open stations.
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $a_i = 0$ or $a_i = 1$ ). If $a_i = 1$ , then the $i$ -th station is open on the first track (that is, in the direction of increasing station numbers). Otherwise the station is closed on the first track.
The third line contains $n$ integers $b_1, b_2, \ldots, b_n$ ( $b_i = 0$ or $b_i = 1$ ). If $b_i = 1$ , then the $i$ -th station is open on the second track (that is, in the direction of decreasing station numbers). Otherwise the station is closed on the second track.
Next lines describe information about closed and open stations.
The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $a_i = 0$ or $a_i = 1$ ). If $a_i = 1$ , then the $i$ -th station is open on the first track (that is, in the direction of increasing station numbers). Otherwise the station is closed on the first track.
The third line contains $n$ integers $b_1, b_2, \ldots, b_n$ ( $b_i = 0$ or $b_i = 1$ ). If $b_i = 1$ , then the $i$ -th station is open on the second track (that is, in the direction of decreasing station numbers). Otherwise the station is closed on the second track.
输出格式
Print "YES" (quotes for clarity) if Bob will be able to commute to the Alice's home by metro and "NO" (quotes for clarity) otherwise.
You can print each letter in any case (upper or lower).
You can print each letter in any case (upper or lower).
输入输出样例
输入 #1
5 3 1 1 1 1 1 1 1 1 1 1
输出 #1
YES
输入 #2
5 4 1 0 0 0 1 0 1 1 1 1
输出 #2
YES
输入 #3
5 2 0 1 1 1 1 1 1 1 1 1
输出 #3
NO
In the first example, all stations are opened, so Bob can simply travel to the station with number $3$ .
In the second example, Bob should travel to the station $5$ first, switch to the second track and travel to the station $4$ then.
In the third example, Bob simply can't enter the train going in the direction of Alice's home.
In the second example, Bob should travel to the station $5$ first, switch to the second track and travel to the station $4$ then.
In the third example, Bob simply can't enter the train going in the direction of Alice's home.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted