CF1055A.Metro

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn stations numbered from 11 to nn . Bob lives near the station with number 11 , while Alice lives near the station with number ss . The metro line has two tracks. Trains on the first track go from the station 11 to the station nn 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 nn and ss ( 2sn10002 \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 11 .

Next lines describe information about closed and open stations.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( ai=0a_i = 0 or ai=1a_i = 1 ). If ai=1a_i = 1 , then the ii -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 nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( bi=0b_i = 0 or bi=1b_i = 1 ). If bi=1b_i = 1 , then the ii -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).

输入输出样例

  • 输入#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 33 .

In the second example, Bob should travel to the station 55 first, switch to the second track and travel to the station 44 then.

In the third example, Bob simply can't enter the train going in the direction of Alice's home.

首页