結果

問題 No.871 かえるのうた
ユーザー stngstng
提出日時 2022-07-23 16:50:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 92,828 KB
最終ジャッジ日時 2024-07-05 06:09:01
合計ジャッジ時間 10,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,272 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 44 ms
53,616 KB
testcase_03 AC 46 ms
54,272 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 51 ms
62,976 KB
testcase_09 AC 53 ms
64,128 KB
testcase_10 AC 64 ms
69,248 KB
testcase_11 AC 47 ms
61,312 KB
testcase_12 AC 68 ms
74,548 KB
testcase_13 AC 64 ms
68,992 KB
testcase_14 AC 92 ms
87,992 KB
testcase_15 AC 93 ms
88,684 KB
testcase_16 AC 1,292 ms
91,984 KB
testcase_17 AC 91 ms
87,808 KB
testcase_18 AC 53 ms
68,224 KB
testcase_19 AC 130 ms
91,052 KB
testcase_20 AC 73 ms
77,184 KB
testcase_21 AC 128 ms
83,136 KB
testcase_22 AC 41 ms
53,632 KB
testcase_23 AC 39 ms
54,400 KB
testcase_24 AC 40 ms
53,888 KB
testcase_25 AC 82 ms
76,744 KB
testcase_26 AC 107 ms
77,184 KB
testcase_27 AC 58 ms
69,120 KB
testcase_28 AC 41 ms
53,888 KB
testcase_29 AC 65 ms
81,664 KB
testcase_30 AC 200 ms
92,740 KB
testcase_31 AC 47 ms
61,824 KB
testcase_32 AC 227 ms
88,984 KB
testcase_33 AC 113 ms
88,904 KB
testcase_34 AC 54 ms
69,760 KB
testcase_35 AC 86 ms
87,680 KB
testcase_36 AC 82 ms
92,828 KB
testcase_37 AC 193 ms
84,352 KB
testcase_38 AC 289 ms
89,944 KB
testcase_39 AC 379 ms
90,124 KB
testcase_40 TLE -
testcase_41 AC 42 ms
54,240 KB
testcase_42 AC 138 ms
88,448 KB
testcase_43 AC 41 ms
53,888 KB
testcase_44 AC 41 ms
54,272 KB
testcase_45 AC 68 ms
72,832 KB
testcase_46 AC 41 ms
53,888 KB
testcase_47 AC 41 ms
53,504 KB
testcase_48 AC 41 ms
53,760 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])
    for i in range(nl,l):
        if ans[i] == 1:
            continue
        d.append(i)
        ans[i] = 1
    for i in range(r,nr):
        if ans[i] == 1:
            continue
        d.append(i)
        ans[i] = 1
    l = nl
    r = nr
print(sum(ans))
0