結果
問題 | No.1508 Avoid being hit |
ユーザー | convexineq |
提出日時 | 2021-05-14 23:26:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,080 KB |
実行使用メモリ | 106,220 KB |
最終ジャッジ日時 | 2024-10-02 05:19:44 |
合計ジャッジ時間 | 10,731 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
52,024 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 39 ms
52,668 KB |
testcase_06 | AC | 39 ms
51,712 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 40 ms
51,800 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 38 ms
52,448 KB |
testcase_16 | AC | 105 ms
102,656 KB |
testcase_17 | AC | 85 ms
89,672 KB |
testcase_18 | AC | 78 ms
84,520 KB |
testcase_19 | AC | 96 ms
98,816 KB |
testcase_20 | AC | 110 ms
102,144 KB |
testcase_21 | AC | 98 ms
96,376 KB |
testcase_22 | AC | 104 ms
103,316 KB |
testcase_23 | AC | 107 ms
103,824 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 37 ms
52,888 KB |
ソースコード
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)