結果

問題 No.1508 Avoid being hit
ユーザー convexineqconvexineq
提出日時 2021-05-14 23:28:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 3,000 ms
コード長 821 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-10-02 07:09:31
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
100,612 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 38 ms
52,456 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 100 ms
103,040 KB
testcase_17 AC 82 ms
90,112 KB
testcase_18 AC 76 ms
84,316 KB
testcase_19 AC 94 ms
99,200 KB
testcase_20 AC 107 ms
102,144 KB
testcase_21 AC 93 ms
96,384 KB
testcase_22 AC 99 ms
103,456 KB
testcase_23 AC 102 ms
103,960 KB
testcase_24 AC 228 ms
106,112 KB
testcase_25 AC 199 ms
102,528 KB
testcase_26 AC 103 ms
77,184 KB
testcase_27 AC 180 ms
87,808 KB
testcase_28 AC 163 ms
87,808 KB
testcase_29 AC 197 ms
102,272 KB
testcase_30 AC 168 ms
89,844 KB
testcase_31 AC 178 ms
98,944 KB
testcase_32 AC 198 ms
102,528 KB
testcase_33 AC 133 ms
80,656 KB
testcase_34 AC 124 ms
97,152 KB
testcase_35 AC 65 ms
73,472 KB
testcase_36 AC 92 ms
86,388 KB
testcase_37 AC 85 ms
78,080 KB
testcase_38 AC 116 ms
92,416 KB
testcase_39 AC 106 ms
86,528 KB
testcase_40 AC 132 ms
99,968 KB
testcase_41 AC 93 ms
88,064 KB
testcase_42 AC 128 ms
99,968 KB
testcase_43 AC 120 ms
104,448 KB
testcase_44 AC 36 ms
52,224 KB
testcase_45 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,Q = map(int,input().split())
*a, = map(int,input().split())
*b, = map(int,input().split())
L = [0]*Q
R = [0]*Q
l,r = 0,n-1

def check(v,lst,a,b):
    if v==a or v==b: return False
    return not(v-1 in lst and v in lst and v+1 in lst)

for i in range(Q)[::-1]:
    ai = a[i]-1
    bi = b[i]-1
    lst = [l-1,l-2,r+1,r+2]
    for ll in range(max(l-1,0),l+3):
        if check(ll,lst,ai,bi): break
    for rr in range(min(n-1,r+1),r-3,-1):
        if check(rr,lst,ai,bi): break
    L[i], R[i] = ll+1,rr+1
    l,r = ll,rr
    if ll > rr:
        print("NO")
        exit()

#print(L)
#print(R)
print("YES")
def ok(x,i):
    return x >= L[i] and x <= R[i] and x != a[i] and x != b[i]

v = L[0]
print(v)
for i in range(Q):
    for x in [v-1,v,v+1]:
        if ok(x,i): break
    else:
        assert 0
    v = x
    print(v)
0