結果

問題 No.1508 Avoid being hit
ユーザー mkawa2mkawa2
提出日時 2021-05-15 00:04:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 327 ms / 3,000 ms
コード長 1,404 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 22,476 KB
最終ジャッジ日時 2024-10-02 07:13:38
合計ジャッジ時間 9,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
21,656 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
11,008 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 200 ms
18,680 KB
testcase_17 AC 124 ms
16,052 KB
testcase_18 AC 105 ms
15,760 KB
testcase_19 AC 172 ms
17,644 KB
testcase_20 AC 233 ms
22,432 KB
testcase_21 AC 161 ms
19,212 KB
testcase_22 AC 196 ms
20,708 KB
testcase_23 AC 213 ms
21,176 KB
testcase_24 AC 327 ms
14,576 KB
testcase_25 AC 315 ms
14,248 KB
testcase_26 AC 50 ms
11,392 KB
testcase_27 AC 164 ms
12,548 KB
testcase_28 AC 164 ms
12,708 KB
testcase_29 AC 306 ms
14,392 KB
testcase_30 AC 176 ms
12,856 KB
testcase_31 AC 269 ms
13,996 KB
testcase_32 AC 302 ms
14,340 KB
testcase_33 AC 101 ms
11,896 KB
testcase_34 AC 254 ms
20,172 KB
testcase_35 AC 54 ms
11,904 KB
testcase_36 AC 153 ms
16,364 KB
testcase_37 AC 86 ms
13,440 KB
testcase_38 AC 212 ms
18,884 KB
testcase_39 AC 145 ms
15,956 KB
testcase_40 AC 285 ms
20,568 KB
testcase_41 AC 178 ms
17,024 KB
testcase_42 AC 263 ms
20,728 KB
testcase_43 AC 301 ms
22,476 KB
testcase_44 AC 31 ms
10,880 KB
testcase_45 AC 32 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n,q=LI()
aa=LI()
bb=LI()

ll=[1]*q
rr=[n]*q
l,r=1,n
for i in range(q-1,-1,-1):
    a,b=aa[i],bb[i]
    if a>b:a,b=b,a
    l=max(1,l-1)
    if l==a:l+=1
    if l==b:l+=1
    r=min(n,r+1)
    if r==b:r-=1
    if r==a:r-=1
    ll[i]=l
    rr[i]=r

for l,r in zip(ll,rr):
    if l>r:
        print("NO")
        exit()

print("YES")
print(ll[0])
now=ll[0]
for l,r,a,b in zip(ll,rr,aa,bb):
    if l>now:now+=1
    elif r<now:now-=1
    elif now==a:
        if now-1!=b and l<=now-1:
            now-=1
        else:
            now+=1
    elif now == b:
        if now-1 != a and l <= now-1:
            now -= 1
        else:
            now += 1
    print(now)
0