結果

問題 No.871 かえるのうた
ユーザー stngstng
提出日時 2022-07-23 17:06:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 785 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,848 KB
最終ジャッジ日時 2024-07-05 06:26:26
合計ジャッジ時間 10,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,736 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
54,016 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 45 ms
54,272 KB
testcase_07 AC 46 ms
54,144 KB
testcase_08 AC 61 ms
62,592 KB
testcase_09 AC 60 ms
64,256 KB
testcase_10 AC 78 ms
71,168 KB
testcase_11 AC 51 ms
60,928 KB
testcase_12 AC 78 ms
74,368 KB
testcase_13 AC 71 ms
68,692 KB
testcase_14 AC 103 ms
87,976 KB
testcase_15 AC 105 ms
88,388 KB
testcase_16 AC 1,380 ms
91,432 KB
testcase_17 AC 101 ms
87,428 KB
testcase_18 AC 62 ms
68,864 KB
testcase_19 AC 144 ms
90,920 KB
testcase_20 AC 86 ms
76,816 KB
testcase_21 AC 138 ms
83,384 KB
testcase_22 AC 46 ms
54,016 KB
testcase_23 AC 45 ms
53,736 KB
testcase_24 AC 45 ms
54,016 KB
testcase_25 AC 100 ms
76,428 KB
testcase_26 AC 109 ms
76,684 KB
testcase_27 AC 68 ms
69,400 KB
testcase_28 AC 44 ms
53,760 KB
testcase_29 AC 75 ms
81,664 KB
testcase_30 AC 222 ms
92,848 KB
testcase_31 AC 53 ms
61,312 KB
testcase_32 AC 230 ms
88,276 KB
testcase_33 AC 121 ms
89,040 KB
testcase_34 AC 66 ms
70,016 KB
testcase_35 AC 98 ms
87,192 KB
testcase_36 AC 97 ms
92,548 KB
testcase_37 AC 201 ms
84,264 KB
testcase_38 AC 278 ms
89,016 KB
testcase_39 AC 432 ms
89,844 KB
testcase_40 TLE -
testcase_41 AC 43 ms
53,888 KB
testcase_42 AC 142 ms
88,168 KB
testcase_43 AC 44 ms
54,272 KB
testcase_44 AC 45 ms
54,144 KB
testcase_45 AC 72 ms
71,936 KB
testcase_46 AC 44 ms
53,888 KB
testcase_47 AC 43 ms
53,760 KB
testcase_48 AC 44 ms
54,144 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:
                continue
            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