結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 42 ms
54,016 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 41 ms
54,144 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 55 ms
63,616 KB
testcase_10 AC 68 ms
68,992 KB
testcase_11 AC 51 ms
61,312 KB
testcase_12 AC 68 ms
72,960 KB
testcase_13 AC 65 ms
67,328 KB
testcase_14 AC 99 ms
88,108 KB
testcase_15 AC 99 ms
88,880 KB
testcase_16 AC 486 ms
91,720 KB
testcase_17 AC 93 ms
88,128 KB
testcase_18 AC 57 ms
68,352 KB
testcase_19 AC 142 ms
90,724 KB
testcase_20 AC 77 ms
76,800 KB
testcase_21 AC 124 ms
83,096 KB
testcase_22 AC 44 ms
53,936 KB
testcase_23 AC 43 ms
53,760 KB
testcase_24 AC 43 ms
53,876 KB
testcase_25 AC 85 ms
76,920 KB
testcase_26 AC 120 ms
77,952 KB
testcase_27 AC 62 ms
69,888 KB
testcase_28 AC 44 ms
53,632 KB
testcase_29 AC 68 ms
81,408 KB
testcase_30 AC 196 ms
92,612 KB
testcase_31 AC 50 ms
61,824 KB
testcase_32 AC 183 ms
88,704 KB
testcase_33 AC 116 ms
88,620 KB
testcase_34 AC 58 ms
69,888 KB
testcase_35 AC 85 ms
87,552 KB
testcase_36 AC 87 ms
92,416 KB
testcase_37 AC 151 ms
84,648 KB
testcase_38 AC 233 ms
89,304 KB
testcase_39 AC 315 ms
89,912 KB
testcase_40 AC 1,492 ms
86,784 KB
testcase_41 AC 42 ms
53,888 KB
testcase_42 AC 138 ms
88,428 KB
testcase_43 AC 42 ms
53,760 KB
testcase_44 AC 43 ms
54,272 KB
testcase_45 AC 71 ms
71,808 KB
testcase_46 AC 44 ms
53,760 KB
testcase_47 AC 44 ms
53,760 KB
testcase_48 AC 43 ms
54,272 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