結果

問題 No.871 かえるのうた
ユーザー stngstng
提出日時 2022-07-23 17:05:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,504 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 92,840 KB
最終ジャッジ日時 2024-05-07 16:47:46
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 39 ms
54,400 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 40 ms
54,272 KB
testcase_08 AC 47 ms
62,848 KB
testcase_09 AC 49 ms
63,616 KB
testcase_10 AC 60 ms
69,248 KB
testcase_11 AC 46 ms
61,056 KB
testcase_12 AC 59 ms
73,088 KB
testcase_13 AC 57 ms
67,328 KB
testcase_14 AC 89 ms
88,264 KB
testcase_15 AC 90 ms
88,388 KB
testcase_16 AC 480 ms
91,364 KB
testcase_17 AC 82 ms
88,096 KB
testcase_18 AC 49 ms
68,480 KB
testcase_19 AC 127 ms
90,332 KB
testcase_20 AC 64 ms
76,864 KB
testcase_21 AC 110 ms
83,200 KB
testcase_22 AC 39 ms
54,940 KB
testcase_23 AC 39 ms
55,132 KB
testcase_24 AC 39 ms
54,248 KB
testcase_25 AC 76 ms
76,768 KB
testcase_26 AC 106 ms
77,568 KB
testcase_27 AC 56 ms
70,792 KB
testcase_28 AC 38 ms
54,632 KB
testcase_29 AC 62 ms
81,772 KB
testcase_30 AC 190 ms
92,840 KB
testcase_31 AC 45 ms
61,824 KB
testcase_32 AC 175 ms
88,448 KB
testcase_33 AC 108 ms
88,976 KB
testcase_34 AC 51 ms
69,632 KB
testcase_35 AC 77 ms
87,424 KB
testcase_36 AC 77 ms
92,268 KB
testcase_37 AC 139 ms
84,224 KB
testcase_38 AC 220 ms
89,124 KB
testcase_39 AC 302 ms
89,972 KB
testcase_40 AC 1,504 ms
86,716 KB
testcase_41 AC 40 ms
53,888 KB
testcase_42 AC 127 ms
88,192 KB
testcase_43 AC 42 ms
53,916 KB
testcase_44 AC 41 ms
54,672 KB
testcase_45 AC 65 ms
72,064 KB
testcase_46 AC 37 ms
53,632 KB
testcase_47 AC 39 ms
53,760 KB
testcase_48 AC 38 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect

n,k = map(int,input().split())
x = [int(i) for i in input().split()]
a = [int(i) for i in input().split()]

ans = [0]*(n)

d = deque()
d.append(k-1)
l = k-1
r = k-1
ans[k-1] = 1

while len(d):
    tmp = d.popleft()
    pos = x[tmp]
    nl = bisect.bisect_left(x,pos-a[tmp])
    nr = bisect.bisect_right(x,pos+a[tmp])
    #print(nl,nr)
    #exit()
    if nl < l:
        for i in range(nl,l):
            #print(i,"ll")
            if ans[i] == 1:
                break
            d.append(i)
            ans[i] = 1
    if nr > r:
        for i in range(r,nr):
            #print(i,"rr")
            if ans[i] == 1:
                continue
            d.append(i)
            ans[i] = 1
    #exit()
    l = nl
    r = nr
print(sum(ans))
0